summaryrefslogtreecommitdiffstats
path: root/Lib/symbol.py
Commit message (Collapse)AuthorAgeFilesLines
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-69/+71
| | | | | "@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728.
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-17/+21
| | | | | | | | | | | | | | (Code contributed by Jiwon Seo.) The documentation portion of the patch is being re-worked and will be checked-in soon. Likewise, PEP 289 will be updated to reflect Guido's rationale for the design decisions on binding behavior (as described in in his patch comments and in discussions on python-dev). The test file, test_genexps.py, is written in doctest format and is meant to exercise all aspects of the the patch. Further additions are welcome from everyone. Please stress test this new feature as much as possible before the alpha release.
* Updates to track Grammar changes. The patch to token.py loosens the regexp toMichael W. Hudson2002-10-031-0/+2
| | | | allow "testlist1" to be snagged.
* track addition of testlist_safe to GrammarJeremy Hylton2001-10-171-7/+8
|
* Updated this file to match reality.Guido van Rossum2001-07-131-44/+45
| | | | Thanks Shane for pointing this out!
* Update for augmented assignment.Thomas Wouters2000-08-241-51/+52
|
* Update to reflect the recent Grammar changes.Fred Drake2000-08-171-40/+42
|
* Updated this module after the recent grammar changesAndrew M. Kuchling2000-08-121-11/+15
|
* The third and final doc-string sweep by Ka-Ping Yee.Guido van Rossum2000-02-041-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 Rossum1998-03-261-2/+2
|
* Remove outdated comments.Guido van Rossum1997-10-221-7/+1
|
* Reduced number of temporary names used at module scope. Use underscores inFred Drake1997-10-061-5/+3
| | | | front of temporary names in the module namespace.
* New symbols due to assert statement.Guido van Rossum1997-04-021-32/+33
|
* New batch from FredGuido van Rossum1996-08-211-28/+56
|
* Changes for new parser module (Fred Drake)Guido van Rossum1996-07-211-32/+37
|
* Merge alpha100 branch back to main trunkGuido van Rossum1994-08-011-43/+43
|
* * test_select.py: (some) tests for built-in select moduleGuido van Rossum1993-11-111-0/+60
* 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