summaryrefslogtreecommitdiff
path: root/Lib/tokenize.py
Commit message (Expand)AuthorAgeFilesLines
* some cleanupsBenjamin Peterson2009-10-151-10/+10
* use floor division and add a test that exercises the tabsize codepathBenjamin Peterson2009-10-151-1/+1
* pep8ify if blocksBenjamin Peterson2009-10-151-9/+18
* Remove a tuple unpacking in a parameter list to remove a SyntaxWarning raisedBrett Cannon2008-08-021-1/+3
* revert 63965 for preformance reasonsBenjamin Peterson2008-06-051-1/+1
* use the more idomatic while TrueBenjamin Peterson2008-06-051-1/+1
* Issue2495: tokenize.untokenize did not insert space between two consecutive s...Amaury Forgeot d'Arc2008-03-271-1/+10
* Added PEP 3127 support to tokenize (with tests); added PEP 3127 to NEWS.Eric Smith2008-03-171-2/+3
* Fix #1679: "0x" was taken as a valid integer literal.Georg Brandl2008-01-191-1/+1
* Added bytes and b'' as aliases for str and ''Christian Heimes2008-01-181-3/+16
* Add name to credits (for untokenize).Raymond Hettinger2006-12-021-1/+1
* Replace dead code with an assert.Jeremy Hylton2006-08-231-4/+1
* Bug fixes large and small for tokenize.Jeremy Hylton2006-08-231-31/+79
* Make tabnanny recognize IndentationErrors raised by tokenize.Georg Brandl2006-08-141-1/+2
* Insert a safety space after numbers as well as names in untokenize().Guido van Rossum2006-03-301-1/+1
* SF bug #1224621: tokenize module does not detect inconsistent dedentsRaymond Hettinger2005-06-211-0/+3
* Add untokenize() function to allow full round-trip tokenization.Raymond Hettinger2005-06-101-3/+49
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-1/+1
* Get rid of many apply() calls.Guido van Rossum2003-02-271-3/+3
* SF 633560: tokenize.__all__ needs "generate_tokens"Raymond Hettinger2002-11-051-1/+2
* Speed up the most egregious "if token in (long tuple)" cases by usingGuido van Rossum2002-08-241-10/+19
* Whitespace normalization.Tim Peters2002-05-231-5/+5
* Added docstrings excerpted from Python Library Reference.Raymond Hettinger2002-05-151-0/+25
* Remove some now-obsolete generator future statements.Tim Peters2002-04-011-2/+0
* Cleanup x so it is not left in moduleNeal Norwitz2002-03-261-0/+1
* SF patch #455966: Allow leading 0 in float/imag literals.Tim Peters2001-08-301-2/+2
* Add new tokens // and //=, in support of PEP 238.Guido van Rossum2001-08-081-0/+1
* Use string.ascii_letters instead of string.letters (SF bug #226706).Fred Drake2001-07-201-1/+1
* Preliminary support for "from __future__ import generators" to enableGuido van Rossum2001-07-151-0/+2
* Turns out Neil didn't intend for *all* of his gen-branch work to getTim Peters2001-06-291-8/+21
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-181-15/+20
* Provide a StopTokenizing exception for conveniently exiting the loop.Ka-Ping Yee2001-03-231-10/+11
* Better __credits__.Ka-Ping Yee2001-03-011-1/+2
* Add __author__ and __credits__ variables.Ka-Ping Yee2001-03-011-1/+2
* final round of __all__ lists (I hope) - skipped urllib2 because Moshe may beSkip Montanaro2001-03-011-1/+5
* String method conversion.Eric S. Raymond2001-02-091-1/+1
* Add tokenizer support and tests for u'', U"", uR'', Ur"", etc.Ka-Ping Yee2001-01-151-9/+25
* Whitespace normalization.Tim Peters2001-01-151-1/+0
* Possible fix for Skip's bug 116136 (sre recursion limit hit in tokenize.py).Tim Peters2000-10-071-12/+20
* Update for augmented assignment, tested & approved by Guido.Thomas Wouters2000-08-241-2/+5
* Convert some old-style string exceptions to class exceptions.Fred Drake2000-08-171-1/+4
* Differentiate between NEWLINE token (an official newline) and NL tokenGuido van Rossum1998-04-031-5/+15
* New, fixed version with proper r"..." and R"..." support from Ka-Ping.Guido van Rossum1997-10-271-7/+10
* Redone (by Ka-Ping) using the new re module, and adding recognitionGuido van Rossum1997-10-271-57/+55
* Correct typo in last line (test program invocation).Guido van Rossum1997-06-031-1/+1
* Ping's latest. Fixes triple quoted strings ending in oddGuido van Rossum1997-04-091-20/+31
* Ka-Ping's muich improved version of March 26, 1997:Guido van Rossum1997-04-081-74/+98
* Added support for imaginary constants (e.g. 0j, 1j, 1.0j).Guido van Rossum1997-03-101-4/+5
* Fixed doc string, added __version__, fixed 1 bug.Guido van Rossum1997-03-071-11/+18
* Ka-Ping's version.Guido van Rossum1997-03-071-45/+132