diff options
author | Raymond Hettinger <python@rcn.com> | 2005-06-10 11:05:19 (GMT) |
---|---|---|
committer | Raymond Hettinger <python@rcn.com> | 2005-06-10 11:05:19 (GMT) |
commit | 68c04534182f2c09783b6506701a8bc25c98b4a9 (patch) | |
tree | 4e5f2b764eff65a3201dd2e666355c487e88a9b7 /Lib/test/regrtest.py | |
parent | bf7255fffb5dda1b9541892cc40412bb6bbd4409 (diff) | |
download | cpython-68c04534182f2c09783b6506701a8bc25c98b4a9.zip cpython-68c04534182f2c09783b6506701a8bc25c98b4a9.tar.gz cpython-68c04534182f2c09783b6506701a8bc25c98b4a9.tar.bz2 |
Add untokenize() function to allow full round-trip tokenization.
Should significantly enhance the utility of the module by supporting
the creation of tools that modify the token stream and writeback the
modified result.
Diffstat (limited to 'Lib/test/regrtest.py')
-rwxr-xr-x | Lib/test/regrtest.py | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Lib/test/regrtest.py b/Lib/test/regrtest.py index 6160b3d..85e784b 100755 --- a/Lib/test/regrtest.py +++ b/Lib/test/regrtest.py @@ -91,7 +91,9 @@ resources to test. Currently only the following are defined: compiler - Test the compiler package by compiling all the source in the standard library and test suite. This takes - a long time. + a long time. Enabling this resource also allows + test_tokenize to verify round-trip lexing on every + file in the test library. subprocess Run all tests for the subprocess module. |