diff options
author | Benjamin Peterson <benjamin@python.org> | 2008-07-18 14:26:35 +0000 |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2008-07-18 14:26:35 +0000 |
commit | e2886fd3ca357c4cf7c1584375d9b9bb55d476b7 (patch) | |
tree | 0ff7a2bd2644f7e292225daa41098aee2cc53163 /Lib/test/regrtest.py | |
parent | 0e3a6cf2cb8e4f2710f30c968efeee0193791583 (diff) | |
download | cpython-git-e2886fd3ca357c4cf7c1584375d9b9bb55d476b7.tar.gz |
now that test_lib2to3 actually works and isn't extremely slow, we don't need the lib2to3 resource
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 b27e53bfe1..f185111fc3 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -167,8 +167,8 @@ if sys.platform == 'darwin': from test import test_support -RESOURCE_NAMES = ('audio', 'curses', 'lib2to3', 'largefile', 'network', - 'bsddb', 'decimal', 'compiler', 'subprocess', 'urlfetch') +RESOURCE_NAMES = ('audio', 'curses', 'largefile', 'network', 'bsddb', + 'decimal', 'compiler', 'subprocess', 'urlfetch') def usage(code, msg=''): |