[Python-checkins] r46673 - python/trunk/Lib/bsddb/dbobj.py

tim.peters python-checkins at python.org
Mon Jun 5 20:36:12 CEST 2006


Author: tim.peters
Date: Mon Jun  5 20:36:12 2006
New Revision: 46673

Modified:
   python/trunk/Lib/bsddb/dbobj.py
Log:
Whitespace normalization.


Modified: python/trunk/Lib/bsddb/dbobj.py
==============================================================================
--- python/trunk/Lib/bsddb/dbobj.py	(original)
+++ python/trunk/Lib/bsddb/dbobj.py	Mon Jun  5 20:36:12 2006
@@ -108,8 +108,8 @@
             return apply(self._cobj.set_encrypt, args, kwargs)
 
     if db.version() >= (4,4):
-      def lsn_reset(self, *args, **kwargs):
-          return apply(self._cobj.lsn_reset, args, kwargs)
+        def lsn_reset(self, *args, **kwargs):
+            return apply(self._cobj.lsn_reset, args, kwargs)
 
 
 class DB(DictMixin):
@@ -251,4 +251,3 @@
         return apply(self._cobj.get_flags, args, kwargs)
     def get_range(self, *args, **kwargs):
         return apply(self._cobj.get_range, args, kwargs)
-


More information about the Python-checkins mailing list