summaryrefslogtreecommitdiffstats
path: root/Python/ast.c
Commit message (Expand)AuthorAgeFilesLines
* More PyImport_ImportModule -> PyImport_ImportModuleNoBlockChristian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Issue #1573, second attempt:Amaury Forgeot d'Arc2007-12-091-3/+8
* Fixed #1573: Improper use of the keyword-only syntax makes the parser crashChristian Heimes2007-12-081-2/+2
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Merged revisions 59107-59186 via svnmerge fromGuido van Rossum2007-11-261-0/+2
* PyString_AsString is permissive and accepts unicode strings.Amaury Forgeot d'Arc2007-11-221-1/+1
* Minimal change that disables (AFAICT) the interpolation of \u and \U insideGuido van Rossum2007-11-121-8/+12
* Merging the py3k-pep3137 branch back into the py3k branch.Guido van Rossum2007-11-061-5/+4
* Merged revisions 58221-58741 via svnmerge fromGuido van Rossum2007-11-011-1/+1
* Issue #1066: implement PEP 3109, 2/3 of PEP 3134.Collin Winter2007-08-311-30/+9
* Implement PEP 3131. Add isidentifier to str.Martin v. Löwis2007-08-151-1/+20
* Remove obsolete ifdef.Martin v. Löwis2007-08-111-2/+0
* Merged revisions 56782-56847 via svnmerge fromGuido van Rossum2007-08-091-0/+2
* Implement PEP 3120.Martin v. Löwis2007-07-291-1/+2
* Merged revisions 56301-56442 via svnmerge fromGuido van Rossum2007-07-181-2/+19
* Merged revisions 56154-56264 via svnmerge fromGuido van Rossum2007-07-111-44/+81
* Merged revisions 55817-55961 via svnmerge fromGuido van Rossum2007-06-131-35/+0
* Minimal changes to make the "freeze" tool work again.Guido van Rossum2007-06-121-0/+3
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-8/+15
* Merged revisions 55631-55794 via svnmerge fromGuido van Rossum2007-06-061-8/+31
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-22/+38
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-82/+29
* Merged revisions 55325-55327 via svnmerge fromGuido van Rossum2007-05-141-0/+4
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-111-0/+28
* Remove support for u"..." literals.Guido van Rossum2007-05-111-10/+1
* More coding by random modification.Guido van Rossum2007-05-041-2/+3
* Get rid of all #ifdef Py_USING_UNICODE (it is always present now).Guido van Rossum2007-05-031-16/+0
* Checkpoint. Manipulated things so that string literals are alwaysGuido van Rossum2007-04-271-1/+1
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-320/+330
* Allow decorators and return annotations to be used together (fixes SF#1697248)Nick Coghlan2007-04-231-1/+1
* Make it compile with C89.Guido van Rossum2007-04-171-1/+2
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-151-255/+111
* "from ... import x" should not be a syntax error... makeGeorg Brandl2007-03-191-2/+6
* Make ELLIPSIS a separate token. This makes it a syntax error to write ". . ...Georg Brandl2007-03-181-1/+1
* Implement PEP 3115 -- new metaclass syntax and semantics.Guido van Rossum2007-03-181-38/+21
* Provisional implementation of PEP 3104.Jeremy Hylton2007-02-271-2/+25
* Whoops, fix build breakage. There were still a few uses of the bool type.Neal Norwitz2007-02-261-2/+2
* Bytes literal.Thomas Wouters2007-02-231-9/+41
* Essential changes for print function changes.Guido van Rossum2007-02-091-34/+1
* Some more changes related to the new except syntax and semantics,Guido van Rossum2007-01-101-3/+1
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-130/+173
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-762/+780
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-63/+178
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-061-4/+7
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-35/+1
* SF patch 1547796 by Georg Brandl -- set literals.Guido van Rossum2006-08-281-24/+44
* Remove the UNARY_CONVERT opcode (was used for backticks). Also bumped up theBrett Cannon2006-08-251-3/+0
* Remove support for backticks from the grammar and compiler.Brett Cannon2006-08-251-8/+1
* Killed the <> operator. You must now use !=.Guido van Rossum2006-08-241-1/+1