[pypy-svn] r64459 - pypy/trunk/lib-python/modified-2.5.2/test

arigo at codespeak.net arigo at codespeak.net
Mon Apr 20 16:46:53 CEST 2009


Author: arigo
Date: Mon Apr 20 16:46:52 2009
New Revision: 64459

Modified:
   pypy/trunk/lib-python/modified-2.5.2/test/test_import.py
Log:
on PyPy, we don't support .PY and other case-mismatching
extensions, even on Windows


Modified: pypy/trunk/lib-python/modified-2.5.2/test/test_import.py
==============================================================================
--- pypy/trunk/lib-python/modified-2.5.2/test/test_import.py	(original)
+++ pypy/trunk/lib-python/modified-2.5.2/test/test_import.py	Mon Apr 20 16:46:52 2009
@@ -74,9 +74,11 @@
 sys.path.insert(0, os.curdir)
 try:
     test_with_extension(os.extsep + "py")
-    if sys.platform.startswith("win"):
-        for ext in ".PY", ".Py", ".pY", ".pyw", ".PYW", ".pYw":
-            test_with_extension(ext)
+    #--- on PyPy, we don't support .PY and other case-mismatching
+    #--- extensions, even on Windows
+    #if sys.platform.startswith("win"):
+    #    for ext in ".PY", ".Py", ".pY", ".pyw", ".PYW", ".pYw":
+    #        test_with_extension(ext)
 finally:
     del sys.path[0]
 



More information about the Pypy-commit mailing list