From d33396c22bdc088b0445a008a45105bf227bcfb1 Mon Sep 17 00:00:00 2001 From: "R. David Murray" Date: Mon, 20 Jul 2009 17:34:54 +0000 Subject: [PATCH] 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. --- Lib/test/test_re.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index fa75fd04c1b..383b56ac7ab 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