Author: Brian Kearns <[email protected]>
Branch:
Changeset: r67952:b87ac0ef8a37
Date: 2013-11-11 13:13 -0500
http://bitbucket.org/pypy/pypy/changeset/b87ac0ef8a37/
Log: fix this test on win32 (tzset is unix-only)
diff --git a/pypy/module/imp/test/test_import.py
b/pypy/module/imp/test/test_import.py
--- a/pypy/module/imp/test/test_import.py
+++ b/pypy/module/imp/test/test_import.py
@@ -573,10 +573,10 @@
def test_reimport_builtin_simple_case_1(self):
import sys, time
- del time.tzset
+ del time.clock
del sys.modules['time']
import time
- assert hasattr(time, 'tzset')
+ assert hasattr(time, 'clock')
def test_reimport_builtin_simple_case_2(self):
skip("fix me")
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit