diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-16 06:30:02 +0000 |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2006-03-16 06:30:02 +0000 |
commit | 94a9c09e109706af64ae8796882baab2af25be2f (patch) | |
tree | ba1884845b6de1e3b6e930c735ea58df1e658ad5 /Lib/test/regrtest.py | |
parent | 559e88be2816d6ce382ef8c079ef68ca9dcbbbee (diff) | |
download | cpython-git-94a9c09e109706af64ae8796882baab2af25be2f.tar.gz |
Rename sre.py -> re.py
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index b8509129c8..85f57a6c0e 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -110,7 +110,7 @@ import sys import getopt import random import warnings -import sre +import re import cStringIO import traceback @@ -525,7 +525,7 @@ def runtest(test, generate, verbose, quiet, testdir=None, huntrleaks=False): _path_created.clear() warnings.filters[:] = fs gc.collect() - sre.purge() + re.purge() _strptime._regex_cache.clear() urlparse.clear_cache() urllib.urlcleanup() |