- a0dfa82 Merged revisions 75149,75260-75263,75265-75267,75292,75300,75376,75405,75429-75433,75437,75445,75501,75551,75572,75589-75591,75657,75742,75868,75952-75957,76057,76105,76139,76143,76162,76223 via svnmerge from by Benjamin Peterson · 15 years ago
- d3afada normalize latin-1 and utf-8 variant encodings like the builtin tokenizer does by Benjamin Peterson · 15 years ago
- aa17a7f Remove dependency on the collections module. by Raymond Hettinger · 16 years ago
- a48db39 Issue #5857: tokenize.tokenize() now returns named tuples. by Raymond Hettinger · 16 years ago
- 9b8d24b reuse tokenize.detect_encoding in linecache instead of a custom solution by Benjamin Peterson · 16 years ago
- 433f32c raise a SyntaxError in detect_encoding() when a codec lookup fails like the builtin parser #4021 by Benjamin Peterson · 16 years ago
- fd03645 #2834: Change re module semantics, so that str and bytes mixing is forbidden, by Antoine Pitrou · 16 years ago
- 0fe1438 use the more idomatic (and Py3k faster) while True by Benjamin Peterson · 16 years ago
- ba4af49 Merged revisions 61964-61979 via svnmerge from by Christian Heimes · 17 years ago
- 428de65 - Issue #719888: Updated tokenize to use a bytes API. generate_tokens has been by Trent Nelson · 17 years ago
- fceab5a Merged revisions 60080-60089,60091-60093 via svnmerge from by Georg Brandl · 17 years ago
- 4fe72f9 Patch 1420 by Ron Adam. by Guido van Rossum · 17 years ago
- ce36ad8 Raise statement normalization in Lib/. by Collin Winter · 17 years ago
- cd16bf6 Merged revisions 55817-55961 via svnmerge from by Guido van Rossum · 17 years ago
- 1bc535d Merged revisions 55328-55341 via svnmerge from by Guido van Rossum · 17 years ago
- a18af4e PEP 3114: rename .next() to .__next__() and add next() builtin. by Georg Brandl · 18 years ago
- 650f0d0 Hide list comp variables and support set comprehensions by Nick Coghlan · 18 years ago
- dde0028 Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ." for Ellipsis. by Georg Brandl · 18 years ago
- be19ed7 Fix most trivially-findable print statements. by Guido van Rossum · 18 years ago
- c150536 PEP 3107 - Function Annotations thanks to Tony Lownds by Neal Norwitz · 18 years ago
- 89f507f Four months of trunk changes (including a few releases...) by Thomas Wouters · 18 years ago
- cf588f6 Remove support for backticks from the grammar and compiler. by Brett Cannon · 18 years ago
- b053cd8 Killed the <> operator. You must now use !=. by Guido van Rossum · 18 years ago
- 00ee7ba Merge current trunk into p3yk. This includes the PyNumber_Index API change, by Thomas Wouters · 18 years ago
- 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 19 years ago
- da99d1c SF bug #1224621: tokenize module does not detect inconsistent dedents by Raymond Hettinger · 19 years ago
- 68c0453 Add untokenize() function to allow full round-trip tokenization. by Raymond Hettinger · 19 years ago
- c2a5a63 PEP-0318, @decorator-style. In Guido's words: by Anthony Baxter · 20 years ago
- 68468eb Get rid of many apply() calls. by Guido van Rossum · 22 years ago
- 78a7aee SF 633560: tokenize.__all__ needs "generate_tokens" by Raymond Hettinger · 22 years ago
- 9d6897a Speed up the most egregious "if token in (long tuple)" cases by using by Guido van Rossum · 22 years ago
- 8ac1495 Whitespace normalization. by Tim Peters · 22 years ago
- d1fa3db Added docstrings excerpted from Python Library Reference. Closes patch 556161. by Raymond Hettinger · 22 years ago
- 496563a Remove some now-obsolete generator future statements. by Tim Peters · 23 years ago
- e98d16e Cleanup x so it is not left in module by Neal Norwitz · 23 years ago
- d507dab SF patch #455966: Allow leading 0 in float/imag literals. by Tim Peters · 23 years ago
- 96204f5 Add new tokens // and //=, in support of PEP 238. by Guido van Rossum · 23 years ago
- 79e75e1 Use string.ascii_letters instead of string.letters (SF bug #226706). by Fred Drake · 23 years ago
- b09f7ed Preliminary support for "from __future__ import generators" to enable by Guido van Rossum · 23 years ago
- 4efb6e9 Turns out Neil didn't intend for *all* of his gen-branch work to get committed. by Tim Peters · 23 years ago
- 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
- 28c62bb Provide a StopTokenizing exception for conveniently exiting the loop. by Ka-Ping Yee · 24 years ago
- 4f64c13 Better __credits__. by Ka-Ping Yee · 24 years ago
- 244c593 Add __author__ and __credits__ variables. by Ka-Ping Yee · 24 years ago
- 40fc160 final round of __all__ lists (I hope) - skipped urllib2 because Moshe may be by Skip Montanaro · 24 years ago
- b08b2d3 String method conversion. by Eric S. Raymond · 24 years ago
- 1ff08b1 Add tokenizer support and tests for u'', U"", uR'', Ur"", etc. by Ka-Ping Yee · 24 years ago
- b90f89a Whitespace normalization. by Tim Peters · 24 years ago
- de49583 Possible fix for Skip's bug 116136 (sre recursion limit hit in tokenize.py). by Tim Peters · 24 years ago
- e1519a1 Update for augmented assignment, tested & approved by Guido. by Thomas Wouters · 24 years ago
- 9b8d801 Convert some old-style string exceptions to class exceptions. by Fred Drake · 24 years ago
- a90c78b Differentiate between NEWLINE token (an official newline) and NL token by Guido van Rossum · 27 years ago
- fefc922 New, fixed version with proper r"..." and R"..." support from Ka-Ping. by Guido van Rossum · 27 years ago
- 3b63177 Redone (by Ka-Ping) using the new re module, and adding recognition by Guido van Rossum · 27 years ago
- 2b1566b Correct typo in last line (test program invocation). by Guido van Rossum · 27 years ago
- de65527 Ping's latest. Fixes triple quoted strings ending in odd by Guido van Rossum · 28 years ago
- 1aec323 Ka-Ping's muich improved version of March 26, 1997: by Guido van Rossum · 28 years ago
- b5dc5e3 Added support for imaginary constants (e.g. 0j, 1j, 1.0j). by Guido van Rossum · 28 years ago
- b51eaa1 Fixed doc string, added __version__, fixed 1 bug. by Guido van Rossum · 28 years ago
- fc6f533 Ka-Ping's version. by Guido van Rossum · 28 years ago
- b31c7f7 * test_select.py: (some) tests for built-in select module by Guido van Rossum · 31 years ago
- 10d10ff Change the order in which Floatnumber and Intnumber are tried by Guido van Rossum · 33 years ago
- 4d8e859 Initial revision by Guido van Rossum · 33 years ago