summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ...Georg Brandl2007-03-181-5/+25
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-1/+6
* Provisional implementation of PEP 3104.Jeremy Hylton2007-02-271-0/+1
* bool is no longer required, it was only used for the print statementNeal Norwitz2007-02-262-8/+3
* Merged revisions 53912-53951 via svnmerge fromThomas Wouters2007-02-261-4/+2
* Touch file to regenerate Python-ast.[ch]Thomas Wouters2007-02-231-0/+1
* Bytes literal.Thomas Wouters2007-02-232-0/+9
* Merged revisions 53623-53858 via svnmerge fromThomas Wouters2007-02-232-3/+20
* * Remove PRINT_ITEM(_TO), PRINT_NEWLINE(_TO) opcodes.Georg Brandl2007-02-091-3/+0
* Merged revisions 53451-53537 via svnmerge fromThomas Wouters2007-02-011-1/+6
* Rip out 'long' and 'L'-suffixed integer literals.Guido van Rossum2007-01-151-5/+1
* Some more changes related to the new except syntax and semantics,Guido van Rossum2007-01-101-1/+1
* avoid dict.has_key, since this might get used by a Py3K built in theFred Drake2006-12-292-15/+15
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-282-3/+9
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-133-14/+16
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-2/+2
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-061-1/+2
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-5/+0
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-0/+1
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-1/+0
* Remove support for backticks from the grammar and compiler.Brett Cannon2006-08-251-2/+0
* Switch to using %r in the format string.Brett Cannon2006-08-252-2/+2
* Get rid of all two uses of backticks (bad Jeremy!).Brett Cannon2006-08-242-2/+2
* Killed the <> operator. You must now use !=.Guido van Rossum2006-08-241-1/+0
* Merge current trunk into p3yk. This includes the PyNumber_Index API change,Thomas Wouters2006-08-212-0/+10
* Merge the rest of the trunk.Thomas Wouters2006-06-081-1/+1
* Partially merge trunk into p3yk. The removal of Mac/Tools is confusing svnThomas Wouters2006-06-081-9/+11
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-1/+3
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-2111-126/+158
* Make 'python -tt' the default, meaning Python won't allow mixing tabs andThomas Wouters2006-04-142-46/+8
* Get rid of compiler warningNeal Norwitz2006-03-171-1/+1
* Get rid of compiler warning about with_msg and as_msg being unusedNeal Norwitz2006-03-161-0/+2
* Checkpoint. 218 tests are okay; 53 are failing. Done so far:Guido van Rossum2006-03-152-1/+4
* SF #1444030: Fix several potential defects found by Coverity.Hye-Shik Chang2006-03-071-0/+2
* Fix crashing bug in tokenizer, when tokenizing files with non-ASCII bytesThomas Wouters2006-03-021-0/+5
* Fix memory leak on attributes.Martin v. Löwis2006-03-021-1/+3
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-018-13/+29
* Remove unused field.Martin v. Löwis2006-03-011-1/+0
* Don't pollute namespace as bad as before. All the types are static now.Neal Norwitz2006-02-281-7/+7
* Make 'as' an actual keyword when with's future statement is used. NotThomas Wouters2006-02-282-12/+14
* Change non-ASCII warning into a SyntaxError.Martin v. Löwis2006-02-281-10/+6
* from __future__ import with_statement addon for 'with', mostly written byThomas Wouters2006-02-283-31/+65
* Whitespace normalization.Tim Peters2006-02-282-16/+16
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-1/+1
* Generate return statement.Martin v. Löwis2006-02-281-0/+1
* Add generation of the version.Martin v. Löwis2006-02-281-1/+2
* Add support for version field on ModulesMartin v. Löwis2006-02-283-8/+29
* PEP 343 -- the with-statement.Guido van Rossum2006-02-271-0/+1
* Create _ast module.Martin v. Löwis2006-02-271-191/+86
* PEP 308 implementation, including minor refdocs and some testcases. ItThomas Wouters2006-02-271-0/+1