summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_dumbdbm.py
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2007-01-30 03:03:46 (GMT)
committerTim Peters <tim.peters@gmail.com>2007-01-30 03:03:46 (GMT)
commitf733abb7831d6566cb0fccd0550d58ec3b7f05a4 (patch)
tree4466e9eccc1b441e60841c16d48915f20216178e /Lib/test/test_dumbdbm.py
parent15c1fe5047f94942f1e784ac7614f9f5370adb47 (diff)
downloadcpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.zip
cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.tar.gz
cpython-f733abb7831d6566cb0fccd0550d58ec3b7f05a4.tar.bz2
Whitespace normalization.
Diffstat (limited to 'Lib/test/test_dumbdbm.py')
-rw-r--r--Lib/test/test_dumbdbm.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_dumbdbm.py b/Lib/test/test_dumbdbm.py
index 62fa3dd..041fac1 100644
--- a/Lib/test/test_dumbdbm.py
+++ b/Lib/test/test_dumbdbm.py
@@ -49,7 +49,7 @@ class DumbDBMTestCase(unittest.TestCase):
f.close()
finally:
os.umask(old_umask)
-
+
expected_mode = 0635
if os.name != 'posix':
# Windows only supports setting the read-only attribute.
@@ -61,7 +61,7 @@ class DumbDBMTestCase(unittest.TestCase):
self.assertEqual(stat.S_IMODE(st.st_mode), expected_mode)
st = os.stat(_fname + '.dir')
self.assertEqual(stat.S_IMODE(st.st_mode), expected_mode)
-
+
def test_close_twice(self):
f = dumbdbm.open(_fname)
f['a'] = 'b'