--- a/dbapi.py Thu Sep 29 14:07:37 2011 +0200
+++ b/dbapi.py Thu Sep 29 14:47:04 2011 +0200
@@ -311,7 +311,7 @@
self.user = user
self.set_entity_cache(user)
- def execute(self, *args, **kwargs):
+ def execute(self, *args, **kwargs): # pylint: disable=E0202
"""overriden when session is set. By default raise authentication error
so authentication is requested.
"""
@@ -640,7 +640,8 @@
"""
return self._repo.check_session(self.sessionid)
- def _txid(self, cursor=None): # XXX could now handle various isolation level!
+ def _txid(self, cursor=None): # pylint: disable=E0202
+ # XXX could now handle various isolation level!
# return a dict as bw compat trick
return {'txid': currentThread().getName()}