Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ↵ | Georg Brandl | 2007-03-18 | 1 | -3/+4 |
| | | | | ." for Ellipsis. | ||||
* | Use better idiom to sort keys. | Guido van Rossum | 2007-02-26 | 1 | -2/+1 |
| | |||||
* | Fix token.py main code vs. dict views. | Georg Brandl | 2007-02-26 | 1 | -1/+1 |
| | |||||
* | - PEP 3106: dict.iterkeys(), .iteritems(), .itervalues() are now gone; | Guido van Rossum | 2007-02-11 | 1 | -1/+1 |
| | | | | | | | | | | and .keys(), .items(), .values() return dict views. The dict views aren't fully functional yet; in particular, they can't be compared to sets yet. but they are useful as "iterator wells". There are still 27 failing unit tests; I expect that many of these have fairly trivial fixes, but there are so many, I could use help. | ||||
* | SF patch 1631942 by Collin Winter: | Guido van Rossum | 2007-01-10 | 1 | -3/+3 |
| | | | | | | (a) "except E, V" -> "except E as V" (b) V is now limited to a simple name (local variable) (c) V is now deleted at the end of the except block | ||||
* | PEP 3107 - Function Annotations thanks to Tony Lownds | Neal Norwitz | 2006-12-28 | 1 | -3/+4 |
| | |||||
* | Get rid of some more cases of backquotes. parsermodule.c doesn't compile | Neal Norwitz | 2006-08-29 | 1 | -1/+0 |
| | | | | but looks like that was a problem before this change. | ||||
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 1 | -3/+4 |
| | | | | | "@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728. | ||||
* | Updates to track Grammar changes. The patch to token.py loosens the regexp to | Michael W. Hudson | 2002-10-03 | 1 | -1/+1 |
| | | | | allow "testlist1" to be snagged. | ||||
* | Remove redundant 'import string' (PyChecker). | Guido van Rossum | 2001-08-13 | 1 | -1/+0 |
| | |||||
* | Regenerated token.py to account for new DOUBLESLASH and DOUBLESLASHEQUAL. | Tim Peters | 2001-08-08 | 1 | -3/+5 |
| | |||||
* | String method cleanup. | Eric S. Raymond | 2001-02-10 | 1 | -1/+1 |
| | |||||
* | String method conversion. | Eric S. Raymond | 2001-02-09 | 1 | -3/+3 |
| | |||||
* | Update for augmented assignment. | Thomas Wouters | 2000-08-24 | 1 | -3/+14 |
| | |||||
* | The third and final doc-string sweep by Ka-Ping Yee. | Guido van Rossum | 2000-02-04 | 1 | -3/+3 |
| | | | | | | | | The attached patches update the standard library so that all modules have docstrings beginning with one-line summaries. A new docstring was added to formatter. The docstring for os.py was updated to mention nt, os2, ce in addition to posix, dos, mac. | ||||
* | Mass check-in after untabifying all files that need it. | Guido van Rossum | 1998-03-26 | 1 | -23/+23 |
| | |||||
* | Convert all remaining *simple* cases of regex usage to re usage. | Guido van Rossum | 1997-10-22 | 1 | -10/+8 |
| | |||||
* | Reduced number of temporary names used at module scope. Use underscores in | Fred Drake | 1997-10-06 | 1 | -5/+4 |
| | | | | front of temporary names in the module namespace. | ||||
* | New batch from Fred | Guido van Rossum | 1996-08-21 | 1 | -4/+75 |
| | |||||
* | Changes for new parser module (Fred Drake) | Guido van Rossum | 1996-07-21 | 1 | -5/+15 |
| | |||||
* | * test_select.py: (some) tests for built-in select module | Guido van Rossum | 1993-11-11 | 1 | -0/+50 |
* test_grammar.py, testall.out: added test for funny things in string literals * token.py, symbol.py: definitions used with built-in parser module. * tokenize.py: added double-quote recognition |