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/test_re.py | |
parent | 559e88be2816d6ce382ef8c079ef68ca9dcbbbee (diff) | |
download | cpython-git-94a9c09e109706af64ae8796882baab2af25be2f.tar.gz |
Rename sre.py -> re.py
Diffstat (limited to 'Lib/test/test_re.py')
-rw-r--r-- | Lib/test/test_re.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/test/test_re.py b/Lib/test/test_re.py index 9755005f11..14a0acfc6b 100644 --- a/Lib/test/test_re.py +++ b/Lib/test/test_re.py @@ -3,7 +3,7 @@ sys.path = ['.'] + sys.path from test.test_support import verbose, run_unittest import re -from sre import Scanner +from re import Scanner import sys, os, traceback from weakref import proxy |