Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Issue #2333: Backport set and dict comprehensions syntax. | Alexandre Vassalotti | 2010-01-11 | 1 | -4/+4 |
| | |||||
* | Issue #2335: Backport set literals syntax from Python 3.x. | Alexandre Vassalotti | 2010-01-09 | 1 | -12/+13 |
| | |||||
* | update symbol.py from with statement changes | Benjamin Peterson | 2009-06-09 | 1 | -1/+1 |
| | |||||
* | Patch #1759: Backport of PEP 3129 class decorators | Christian Heimes | 2008-02-23 | 1 | -79/+80 |
| | | | | with some help from Georg | ||||
* | PEP 343 -- the with-statement. | Guido van Rossum | 2006-02-27 | 1 | -42/+44 |
| | | | | | | | | | | | | | This was started by Mike Bland and completed by Guido (with help from Neal). This still needs a __future__ statement added; Thomas is working on Michael's patch for that aspect. There's a small amount of code cleanup and refactoring in ast.c, compile.c and ceval.c (I fixed the lltrace behavior when EXT_POP is used -- however I had to make lltrace a static global). | ||||
* | regenerated. please read PEP 306 when changing Python's grammar! | Anthony Baxter | 2006-02-27 | 1 | -37/+40 |
| | |||||
* | PEP 342 implementation. Per Guido's comments, the generator throw() | Phillip J. Eby | 2005-08-02 | 1 | -0/+1 |
| | | | | | method still needs to support string exceptions, and allow None for the third argument. Documentation updates are needed, too. | ||||
* | SF patch #1007189, multi-line imports, for instance: | Anthony Baxter | 2004-08-31 | 1 | -49/+53 |
| | | | | | "from blah import (foo, bar baz, bongo)" | ||||
* | PEP-0318, @decorator-style. In Guido's words: | Anthony Baxter | 2004-08-02 | 1 | -69/+71 |
| | | | | | "@ seems the syntax that everybody can hate equally" Implementation by Mark Russell, from SF #979728. | ||||
* | SF patch #872326: Generator expression implementation | Raymond Hettinger | 2004-05-19 | 1 | -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 to | Michael W. Hudson | 2002-10-03 | 1 | -0/+2 |
| | | | | allow "testlist1" to be snagged. | ||||
* | track addition of testlist_safe to Grammar | Jeremy Hylton | 2001-10-17 | 1 | -7/+8 |
| | |||||
* | Updated this file to match reality. | Guido van Rossum | 2001-07-13 | 1 | -44/+45 |
| | | | | Thanks Shane for pointing this out! | ||||
* | Update for augmented assignment. | Thomas Wouters | 2000-08-24 | 1 | -51/+52 |
| | |||||
* | Update to reflect the recent Grammar changes. | Fred Drake | 2000-08-17 | 1 | -40/+42 |
| | |||||
* | Updated this module after the recent grammar changes | Andrew M. Kuchling | 2000-08-12 | 1 | -11/+15 |
| | |||||
* | 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 | -2/+2 |
| | |||||
* | Remove outdated comments. | Guido van Rossum | 1997-10-22 | 1 | -7/+1 |
| | |||||
* | Reduced number of temporary names used at module scope. Use underscores in | Fred Drake | 1997-10-06 | 1 | -5/+3 |
| | | | | front of temporary names in the module namespace. | ||||
* | New symbols due to assert statement. | Guido van Rossum | 1997-04-02 | 1 | -32/+33 |
| | |||||
* | New batch from Fred | Guido van Rossum | 1996-08-21 | 1 | -28/+56 |
| | |||||
* | Changes for new parser module (Fred Drake) | Guido van Rossum | 1996-07-21 | 1 | -32/+37 |
| | |||||
* | Merge alpha100 branch back to main trunk | Guido van Rossum | 1994-08-01 | 1 | -43/+43 |
| | |||||
* | * test_select.py: (some) tests for built-in select module | Guido van Rossum | 1993-11-11 | 1 | -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 |