summaryrefslogtreecommitdiffstats
path: root/Lib
diff options
context:
space:
mode:
authorR. David Murray <rdmurray@bitdance.com>2009-07-21 14:03:55 (GMT)
committerR. David Murray <rdmurray@bitdance.com>2009-07-21 14:03:55 (GMT)
commitd98ef1a1accc9ac7213407be62f761ba3f7e106a (patch)
treea7c774fc3173494fd3df46cfd9261ee2e212cc99 /Lib
parent784935ffc9cf097e698311c70bdff24250674df8 (diff)
downloadcpython-d98ef1a1accc9ac7213407be62f761ba3f7e106a.zip
cpython-d98ef1a1accc9ac7213407be62f761ba3f7e106a.tar.gz
cpython-d98ef1a1accc9ac7213407be62f761ba3f7e106a.tar.bz2
Merged revisions 74118 via svnmerge from
svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r74118 | r.david.murray | 2009-07-20 13:34:54 -0400 (Mon, 20 Jul 2009) | 5 lines 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. ........
Diffstat (limited to 'Lib')
-rw-r--r--Lib/test/test_re.py3
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py
index 11fff78..a857aab 100644
--- a/Lib/test/test_re.py
+++ b/Lib/test/test_re.py
@@ -1,6 +1,3 @@
-import sys
-sys.path = ['.'] + sys.path
-
from test.support import verbose, run_unittest
import re
from re import Scanner