[Python-3000-checkins] r57667 - python/branches/py3k/runtests.sh

guido.van.rossum python-3000-checkins at python.org
Wed Aug 29 20:15:49 CEST 2007


Author: guido.van.rossum
Date: Wed Aug 29 20:15:48 2007
New Revision: 57667

Modified:
   python/branches/py3k/runtests.sh
Log:
Unset PYTHONPATH, for my convenience.


Modified: python/branches/py3k/runtests.sh
==============================================================================
--- python/branches/py3k/runtests.sh	(original)
+++ python/branches/py3k/runtests.sh	Wed Aug 29 20:15:48 2007
@@ -22,6 +22,9 @@
 *)      PYTHON=./python;;
 esac
 
+# Unset PYTHONPATH, just to be sure.
+unset PYTHONPATH
+
 # Create the output directory if necessary.
 mkdir -p OUT
 


More information about the Python-3000-checkins mailing list