From: R. David Murray Date: Mon, 20 Jul 2009 17:34:54 +0000 (+0000) Subject: Remove apparently unneeded and un-cleaned-up munging of sys.path from X-Git-Tag: v3.2a1~2780 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d33396c22bdc088b0445a008a45105bf227bcfb1;p=python 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. --- diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index fa75fd04c1..383b56ac7a 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