[pypy-svn] r11445 - in pypy/dist/pypy: . documentation documentation/revreport tool tool/test

hpk at codespeak.net hpk at codespeak.net
Tue Apr 26 11:23:32 CEST 2005


Author: hpk
Date: Tue Apr 26 11:23:32 2005
New Revision: 11445

Modified:
   pypy/dist/pypy/documentation/conftest.py
   pypy/dist/pypy/documentation/revreport/revreport.py
   pypy/dist/pypy/test_all.py
   pypy/dist/pypy/tool/pytestsupport.py
   pypy/dist/pypy/tool/test/test_pytestsupport.py
Log:
adjust to renaming with the py lib: 
py's implementation modules are now referenced 
via '__' instead of '__impl__'.  all tests pass
on my machine. 



Modified: pypy/dist/pypy/documentation/conftest.py
==============================================================================
--- pypy/dist/pypy/documentation/conftest.py	(original)
+++ pypy/dist/pypy/documentation/conftest.py	Tue Apr 26 11:23:32 2005
@@ -1,3 +1,3 @@
 
-from py.__impl__.documentation.conftest import * 
+from py.__.documentation.conftest import * 
 

Modified: pypy/dist/pypy/documentation/revreport/revreport.py
==============================================================================
--- pypy/dist/pypy/documentation/revreport/revreport.py	(original)
+++ pypy/dist/pypy/documentation/revreport/revreport.py	Tue Apr 26 11:23:32 2005
@@ -4,7 +4,7 @@
 import py
 from pypy.documentation.revreport import delta 
 from pypy.tool.pypyrev import pypyrev 
-from py.__impl__.test.tool.outerrcapture import SimpleOutErrCapture 
+from py.__.test.tool.outerrcapture import SimpleOutErrCapture 
 
 BASE = py.path.local(delta.__file__).dirpath() 
 DEST = BASE.join('revdata') 

Modified: pypy/dist/pypy/test_all.py
==============================================================================
--- pypy/dist/pypy/test_all.py	(original)
+++ pypy/dist/pypy/test_all.py	Tue Apr 26 11:23:32 2005
@@ -2,5 +2,5 @@
 
 if __name__ == '__main__': 
     import tool.autopath
-    from py.__impl__.test.cmdline import main
+    from py.__.test.cmdline import main
     main() 

Modified: pypy/dist/pypy/tool/pytestsupport.py
==============================================================================
--- pypy/dist/pypy/tool/pytestsupport.py	(original)
+++ pypy/dist/pypy/tool/pytestsupport.py	Tue Apr 26 11:23:32 2005
@@ -1,7 +1,7 @@
 from __future__ import generators 
 import autopath
 import py
-from py.__impl__.magic import exprinfo
+from py.__.magic import exprinfo
 from pypy.interpreter import gateway
 from pypy.interpreter.error import OperationError
 

Modified: pypy/dist/pypy/tool/test/test_pytestsupport.py
==============================================================================
--- pypy/dist/pypy/tool/test/test_pytestsupport.py	(original)
+++ pypy/dist/pypy/tool/test/test_pytestsupport.py	Tue Apr 26 11:23:32 2005
@@ -1,5 +1,5 @@
 import autopath
-from py.__impl__.magic import exprinfo
+from py.__.magic import exprinfo
 from pypy.interpreter.error import OperationError
 from pypy.interpreter.gateway import app2interp_temp
 from pypy.interpreter.argument import Arguments



More information about the Pypy-commit mailing list