dbapi.py
changeset 7894 ad0eeb0f7a8d
parent 7876 df15d194a134
parent 7879 9aae456abab5
child 7920 5146c63e8e34
--- 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()}