[Python-checkins] cpython: Back out changeset b6336ba796d4 until fix for #13303.
charles-francois.natali
python-checkins at python.org
Tue Nov 8 20:39:38 CET 2011
http://hg.python.org/cpython/rev/1238cdd288d2
changeset: 73462:1238cdd288d2
user: Charles-François Natali <neologix at free.fr>
date: Tue Nov 08 20:38:11 2011 +0100
summary:
Back out changeset b6336ba796d4 until fix for #13303.
files:
Lib/test/test_import.py | 7 ++++---
1 files changed, 4 insertions(+), 3 deletions(-)
diff --git a/Lib/test/test_import.py b/Lib/test/test_import.py
--- a/Lib/test/test_import.py
+++ b/Lib/test/test_import.py
@@ -112,9 +112,10 @@
if not os.path.exists(fn):
self.fail("__import__ did not result in creation of "
"either a .pyc or .pyo file")
- s = os.stat(fn)
- self.assertEqual(stat.S_IMODE(s.st_mode),
- stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)
+ s = os.stat(fn)
+ self.assertEqual(
+ stat.S_IMODE(s.st_mode),
+ stat.S_IRUSR | stat.S_IRGRP | stat.S_IROTH)
finally:
del sys.path[0]
remove_files(TESTFN)
--
Repository URL: http://hg.python.org/cpython
More information about the Python-checkins
mailing list