diff options
author | R. David Murray <rdmurray@bitdance.com> | 2009-07-20 17:34:54 (GMT) |
---|---|---|
committer | R. David Murray <rdmurray@bitdance.com> | 2009-07-20 17:34:54 (GMT) |
commit | d33396c22bdc088b0445a008a45105bf227bcfb1 (patch) | |
tree | 4b497a3ea0f2997728d3c7f4c90a287a52f58488 /Lib/test/test_re.py | |
parent | 3059b00f65f8b01aa7b214b7030783c748ecc70c (diff) | |
download | cpython-d33396c22bdc088b0445a008a45105bf227bcfb1.zip cpython-d33396c22bdc088b0445a008a45105bf227bcfb1.tar.gz cpython-d33396c22bdc088b0445a008a45105bf227bcfb1.tar.bz2 |
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/test/test_re.py')
-rw-r--r-- | Lib/test/test_re.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index fa75fd0..383b56a 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 |