summaryrefslogtreecommitdiffstats
path: root/Lib/test/tokenize_tests.py
Commit message (Collapse)AuthorAgeFilesLines
* Effectively renamed tokenize_tests.py to have a txt extension instead.Tim Peters2003-05-121-175/+0
| | | | | | | | | This file isn't meant to be executed, it's data input for test_tokenize.py. The problem with the .py extension is that it uses "non-standard" indentation, and it's good to test that, but reindent.py keeps wanting to fix it. But fixing the indentation causes the expected-output file to change, since exact line and column numbers are part of the tokenize.tokenize() output getting tested.
* Reverted whitespace normalization on this file. I should really changeTim Peters2003-02-191-9/+10
| | | | | this thing so it doesn't rely on being unnormalized. (That's the editorial "I", if anyone's listening <wink>.)
* Whitespace normalization.Tim Peters2003-02-191-10/+9
|
* Undo Barry's change. This file is not imported, it's fed as input toGuido van Rossum2002-08-291-3/+3
| | | | | | the tokenize module by test_tokenize.py. The FutureWarnings only appeared during installation, and I've figured out a way to suppress those in a different way.
* Quite down some FutureWarnings.Barry Warsaw2002-08-281-3/+3
|
* There's no need for the tokenize tests to include a SyntaxError.Jeremy Hylton2001-04-131-1/+1
|
* Add tokenizer support and tests for u'', U"", uR'', Ur"", etc.Ka-Ping Yee2001-01-151-0/+14
|
* Tests for tokenize.py (Ka-Ping Yee)Guido van Rossum1997-10-271-0/+161