cpython (2.7): fix spelling
http://hg.python.org/cpython/rev/f44372b595c8 changeset: 80665:f44372b595c8 branch: 2.7 user: Benjamin Peterson <benjamin@python.org> date: Fri Nov 30 16:13:14 2012 -0500 summary: fix spelling files: Lib/test/test_posixpath.py | 5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/Lib/test/test_posixpath.py b/Lib/test/test_posixpath.py --- a/Lib/test/test_posixpath.py +++ b/Lib/test/test_posixpath.py @@ -153,8 +153,9 @@ ), True ) - # If we don't have links, assume that os.stat() doesn't return resonable - # inode information and thus, that samestat() doesn't work + # If we don't have links, assume that os.stat() doesn't return + # reasonable inode information and thus, that samestat() doesn't + # work. if hasattr(os, "symlink"): os.symlink(test_support.TESTFN + "1", test_support.TESTFN + "2") self.assertIs( -- Repository URL: http://hg.python.org/cpython
participants (1)
-
benjamin.peterson