diff options
author | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-22 22:49:44 (GMT) |
---|---|---|
committer | Antoine Pitrou <solipsis@pitrou.net> | 2012-06-22 22:49:44 (GMT) |
commit | f0f4742b495554238d1204ce0002c1ef1ba23507 (patch) | |
tree | b1b39abf270cee8d8ea2fb9e55de071c69b636f2 /Lib/test/test_reprlib.py | |
parent | 3077ab8237818a4bc5f063bb7a63d2a8f140f3d5 (diff) | |
download | cpython-f0f4742b495554238d1204ce0002c1ef1ba23507.zip cpython-f0f4742b495554238d1204ce0002c1ef1ba23507.tar.gz cpython-f0f4742b495554238d1204ce0002c1ef1ba23507.tar.bz2 |
Fix silly mistake in debugging code
Diffstat (limited to 'Lib/test/test_reprlib.py')
-rw-r--r-- | Lib/test/test_reprlib.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_reprlib.py b/Lib/test/test_reprlib.py index 86ea40e..aca1d5b 100644 --- a/Lib/test/test_reprlib.py +++ b/Lib/test/test_reprlib.py @@ -249,7 +249,7 @@ class LongReprTest(unittest.TestCase): self.skipTest("test paths too long (%d characters) for Windows' 260 character limit" % cached_path_len) elif os.name == 'nt' and verbose: - print("len(cached_path_len) =", len(cached_path_len)) + print("cached_path_len =", cached_path_len) def test_module(self): self._check_path_limitations(self.pkgname) |