[Python-checkins] r74118 - python/branches/py3k/Lib/test/test_re.py

r.david.murray python-checkins at python.org
Mon Jul 20 19:34:55 CEST 2009


Author: r.david.murray
Date: Mon Jul 20 19:34:54 2009
New Revision: 74118

Log:
Remove apparently unneeded and un-cleaned-up munging of sys.path from
test_re.  Tests pass on my machine without it, and I can't see
any obvious place in the tests that would need it.



Modified:
   python/branches/py3k/Lib/test/test_re.py

Modified: python/branches/py3k/Lib/test/test_re.py
==============================================================================
--- python/branches/py3k/Lib/test/test_re.py	(original)
+++ python/branches/py3k/Lib/test/test_re.py	Mon Jul 20 19:34:54 2009
@@ -1,6 +1,3 @@
-import sys
-sys.path = ['.'] + sys.path
-
 from test.support import verbose, run_unittest
 import re
 from re import Scanner


More information about the Python-checkins mailing list