]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
remove trailing whitespace from some util classes
authorBrian Warner <warner@lothar.com>
Mon, 29 Jun 2009 20:03:41 +0000 (13:03 -0700)
committerBrian Warner <warner@lothar.com>
Mon, 29 Jun 2009 20:03:41 +0000 (13:03 -0700)
src/allmydata/util/dictutil.py
src/allmydata/util/nummedobj.py

index 11c0c7438ab4d2d7de755571f7bcf038f5bb99cf..2eee85a62c494de013d9bf0d4159029907c29cb2 100644 (file)
@@ -348,7 +348,7 @@ def del_if_present(d, k):
 class ValueOrderedDict:
     """
     Note: this implementation assumes that the values do not mutate and change
-    their sort order.  That is, it stores the values in a sorted list and 
+    their sort order.  That is, it stores the values in a sorted list and
     as items are added and removed from the dict, it makes updates to the list
     which will keep the list sorted.  But if a value that is currently sitting
     in the list changes its sort order, then the internal consistency of this
index e60505f84cfee4e8ef3e580458f2f422f5366997..97d37066c3e216f4e6aeb35c58ef031181f220e9 100644 (file)
@@ -19,7 +19,7 @@ class NummedObj(object):
         if klass is None:
             klass = self.__class__
         self._classname = klass.__name__
-            
+
         NummedObj.objnums.inc(self._classname)
         self._objid = NummedObj.objnums[self._classname]