summaryrefslogtreecommitdiffstats
path: root/Lib/symbol.py
Commit message (Collapse)AuthorAgeFilesLines
* 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