summaryrefslogtreecommitdiffstats
path: root/Lib/test
diff options
context:
space:
mode:
authorAnthony Baxter <anthonybaxter@gmail.com>2005-06-08 04:35:50 (GMT)
committerAnthony Baxter <anthonybaxter@gmail.com>2005-06-08 04:35:50 (GMT)
commit95a2a4ea701e0bc7b2afb778b1f0c1e4b4d89624 (patch)
treefa0ed5e1abd15837fda142a40992066e2c453d05 /Lib/test
parent684364c646543c4d017207219aba73f683683c5d (diff)
downloadcpython-95a2a4ea701e0bc7b2afb778b1f0c1e4b4d89624.zip
cpython-95a2a4ea701e0bc7b2afb778b1f0c1e4b4d89624.tar.gz
cpython-95a2a4ea701e0bc7b2afb778b1f0c1e4b4d89624.tar.bz2
Tools/scripts/reindent.py _is_ your friend
Diffstat (limited to 'Lib/test')
-rw-r--r--Lib/test/test_dumbdbm.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/test/test_dumbdbm.py b/Lib/test/test_dumbdbm.py
index d320110..63b14b0 100644
--- a/Lib/test/test_dumbdbm.py
+++ b/Lib/test/test_dumbdbm.py
@@ -86,12 +86,12 @@ class DumbDBMTestCase(unittest.TestCase):
data = open(_fname + '.dir').read()
data = data.replace('\n', '\r\n')
open(_fname + '.dir', 'wb').write(data)
-
+
f = dumbdbm.open(_fname)
self.assertEqual(f['1'], 'hello')
self.assertEqual(f['2'], 'hello2')
-
-
+
+
def read_helper(self, f):
keys = self.keys_helper(f)
for key in self._dict: