[pypy-svn] r49073 - pypy/branch/windows48396/pypy/translator/goal

tismer at codespeak.net tismer at codespeak.net
Sun Nov 25 13:38:13 CET 2007


Author: tismer
Date: Sun Nov 25 13:38:12 2007
New Revision: 49073

Modified:
   pypy/branch/windows48396/pypy/translator/goal/nanos.py
Log:
there are side effects with geninterp'ing os.path when compiling on top of
pypy-c. Whatever the reason is, this side-effects is not necessary.

Modified: pypy/branch/windows48396/pypy/translator/goal/nanos.py
==============================================================================
--- pypy/branch/windows48396/pypy/translator/goal/nanos.py	(original)
+++ pypy/branch/windows48396/pypy/translator/goal/nanos.py	Sun Nov 25 13:38:12 2007
@@ -29,10 +29,12 @@
 import os
 
 app_os_path = applevel(r'''
+    # NOT_RPYTHON
     from os.path import dirname, join, abspath, isfile, islink
 ''', filename=__file__)
 
 app_os = applevel(r'''
+    # NOT_RPYTHON
     from os import sep, pathsep
     try:
         from os import readlink



More information about the Pypy-commit mailing list