Kaydet (Commit) f16afd2f authored tarafından Anthony Baxter's avatar Anthony Baxter

Tools/scripts/reindent.py is your friend

üst 997b3627
...@@ -86,12 +86,12 @@ class DumbDBMTestCase(unittest.TestCase): ...@@ -86,12 +86,12 @@ class DumbDBMTestCase(unittest.TestCase):
data = open(_fname + '.dir').read() data = open(_fname + '.dir').read()
data = data.replace('\n', '\r\n') data = data.replace('\n', '\r\n')
open(_fname + '.dir', 'wb').write(data) open(_fname + '.dir', 'wb').write(data)
f = dumbdbm.open(_fname) f = dumbdbm.open(_fname)
self.assertEqual(f['1'], 'hello') self.assertEqual(f['1'], 'hello')
self.assertEqual(f['2'], 'hello2') self.assertEqual(f['2'], 'hello2')
def read_helper(self, f): def read_helper(self, f):
keys = self.keys_helper(f) keys = self.keys_helper(f)
for key in self._dict: for key in self._dict:
......
...@@ -476,7 +476,7 @@ class PosixPathTest(unittest.TestCase): ...@@ -476,7 +476,7 @@ class PosixPathTest(unittest.TestCase):
self.safe_rmdir(ABSTFN + "/k/y") self.safe_rmdir(ABSTFN + "/k/y")
self.safe_rmdir(ABSTFN + "/k") self.safe_rmdir(ABSTFN + "/k")
self.safe_rmdir(ABSTFN) self.safe_rmdir(ABSTFN)
def test_realpath_resolve_first(self): def test_realpath_resolve_first(self):
# Bug #1213894: The first component of the path, if not absolute, # Bug #1213894: The first component of the path, if not absolute,
# must be resolved too. # must be resolved too.
...@@ -487,7 +487,7 @@ class PosixPathTest(unittest.TestCase): ...@@ -487,7 +487,7 @@ class PosixPathTest(unittest.TestCase):
os.mkdir(ABSTFN + "/k") os.mkdir(ABSTFN + "/k")
os.symlink(ABSTFN, ABSTFN + "link") os.symlink(ABSTFN, ABSTFN + "link")
os.chdir(dirname(ABSTFN)) os.chdir(dirname(ABSTFN))
base = basename(ABSTFN) base = basename(ABSTFN)
self.assertEqual(realpath(base + "link"), ABSTFN) self.assertEqual(realpath(base + "link"), ABSTFN)
self.assertEqual(realpath(base + "link/k"), ABSTFN + "/k") self.assertEqual(realpath(base + "link/k"), ABSTFN + "/k")
......
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