[py-svn] r57445 - py/trunk/py/bin

hpk at codespeak.net hpk at codespeak.net
Mon Aug 18 21:03:26 CEST 2008


Author: hpk
Date: Mon Aug 18 21:03:25 2008
New Revision: 57445

Modified:
   py/trunk/py/bin/_findpy.py
Log:
retain the behaviour of printing if we insert to sys.path


Modified: py/trunk/py/bin/_findpy.py
==============================================================================
--- py/trunk/py/bin/_findpy.py	(original)
+++ py/trunk/py/bin/_findpy.py	Mon Aug 18 21:03:25 2008
@@ -19,7 +19,7 @@
                 #    if p == current:
                 #        return True
                 if current != sys.path[0]:  # if we are already first, then ok
-                    #print >>sys.stderr, "inserting into sys.path:", current
+                    print >>sys.stderr, "inserting into sys.path:", current
                     sys.path.insert(0, current)
                 return True
         current = opd(current)



More information about the pytest-commit mailing list