Commit 71a521c4 authored by Tim Peters's avatar Tim Peters

Whitespace normalization.

parent 208bb5f6
...@@ -205,7 +205,7 @@ class MappingBase(Base): ...@@ -205,7 +205,7 @@ class MappingBase(Base):
lst = list(self.t.values(max=99-x, min=0+x)) lst = list(self.t.values(max=99-x, min=0+x))
lst.sort() lst.sort()
self.assertEqual(lst,range(0+x,99-x+1)) self.assertEqual(lst,range(0+x,99-x+1))
def testValuesNegativeIndex(self): def testValuesNegativeIndex(self):
L = [-3, 6, -11, 4] L = [-3, 6, -11, 4]
for i in L: for i in L:
...@@ -234,7 +234,7 @@ class MappingBase(Base): ...@@ -234,7 +234,7 @@ class MappingBase(Base):
self.assertEqual(list(lst), range(0+x, 99-x+1)) self.assertEqual(list(lst), range(0+x, 99-x+1))
self.assertEqual(len(v), 100) self.assertEqual(len(v), 100)
def testKeysNegativeIndex(self): def testKeysNegativeIndex(self):
L = [-3, 6, -11, 4] L = [-3, 6, -11, 4]
for i in L: for i in L:
...@@ -266,7 +266,7 @@ class MappingBase(Base): ...@@ -266,7 +266,7 @@ class MappingBase(Base):
items = list(self.t.iteritems(min=12, max=20)) items = list(self.t.iteritems(min=12, max=20))
self.assertEqual(items, zip(range(12, 21), range(24, 43, 2))) self.assertEqual(items, zip(range(12, 21), range(24, 43, 2)))
def testItemsNegativeIndex(self): def testItemsNegativeIndex(self):
L = [-3, 6, -11, 4] L = [-3, 6, -11, 4]
for i in L: for i in L:
......
...@@ -39,4 +39,3 @@ class IConnection(zope.interface.Interface): ...@@ -39,4 +39,3 @@ class IConnection(zope.interface.Interface):
must implement the IPersistent interface and must not must implement the IPersistent interface and must not
already be associated with a Connection. already be associated with a Connection.
""" """
...@@ -278,4 +278,3 @@ class IPersistentDataManager(Interface): ...@@ -278,4 +278,3 @@ class IPersistentDataManager(Interface):
is returned. If non-None, the return value is the kind of is returned. If non-None, the return value is the kind of
timestamp supplied by Python's time.time(). timestamp supplied by Python's time.time().
""" """
...@@ -633,4 +633,3 @@ class DataManagerAdapter(object): ...@@ -633,4 +633,3 @@ class DataManagerAdapter(object):
def sortKey(self): def sortKey(self):
return self._datamanager.sortKey() return self._datamanager.sortKey()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment