diff options
author | Benjamin Peterson <benjamin@python.org> | 2009-10-15 15:39:15 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2009-10-15 15:39:15 (GMT) |
commit | 96e319e5ac93c7342ca3edd2322dad688199fac6 (patch) | |
tree | 1208768b706d2313facad7914aebd07ea175d57c | |
parent | 9d109742c0803521cee7e92956e628b98906797d (diff) | |
download | cpython-96e319e5ac93c7342ca3edd2322dad688199fac6.zip cpython-96e319e5ac93c7342ca3edd2322dad688199fac6.tar.gz cpython-96e319e5ac93c7342ca3edd2322dad688199fac6.tar.bz2 |
don't need to mess up sys.path
-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 c4cc820..56056da 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.test_support import verbose, run_unittest import re from re import Scanner |