summaryrefslogtreecommitdiffstats
path: root/Modules/parsermodule.c
Commit message (Expand)AuthorAgeFilesLines
* Patch 1144 by David Binger, fix for parser module. With unittest.Guido van Rossum2007-11-151-12/+12
* Use unicode and remove support for some uses of str8.Neal Norwitz2007-08-261-8/+12
* Fix refleaksNeal Norwitz2007-08-111-0/+4
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-5/+4
* Merged revisions 55407-55513 via svnmerge fromGuido van Rossum2007-05-221-10/+25
* Merged revisions 55328-55341 via svnmerge fromGuido van Rossum2007-05-151-148/+48
* Merged revisions 55225-55227,55229-55269 via svnmerge fromGuido van Rossum2007-05-111-4/+19
* Hide list comp variables and support set comprehensionsNick Coghlan2007-04-151-152/+49
* Essential changes for print function changes.Guido van Rossum2007-02-091-54/+2
* SF patch 1631942 by Collin Winter:Guido van Rossum2007-01-101-2/+2
* PEP 3107 - Function Annotations thanks to Tony LowndsNeal Norwitz2006-12-281-44/+91
* Four months of trunk changes (including a few releases...)Thomas Wouters2006-12-131-15/+30
* Jiwon Seo's PEP 3102 implementation.Guido van Rossum2006-10-271-9/+33
* Patch #1550786: ellipsis literal.Georg Brandl2006-09-061-0/+5
* Patch #1550800: make exec a function.Georg Brandl2006-09-061-33/+3
* Get parsermodule working again after adding set literalsNeal Norwitz2006-08-291-4/+4
* Get rid of some more cases of backquotes. parsermodule.c doesn't compileNeal Norwitz2006-08-291-5/+0
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-2/+2
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-18/+23
* Patch #1440601: Add col_offset attribute to AST nodes.Martin v. Löwis2006-03-011-1/+1
* SF patch #1438387, PEP 328: relative and absolute imports.Thomas Wouters2006-02-281-13/+28
* unconst.Martin v. Löwis2006-02-271-9/+9
* Update for PEP 308 patch.Thomas Wouters2006-02-271-3/+54
* Use Py_ssize_t for counts and sizes.Martin v. Löwis2006-02-161-1/+1
* Merge ssize_t branch.Martin v. Löwis2006-02-151-5/+6
* Check return result from Py_InitModule*(). This API can fail.Neal Norwitz2006-01-191-0/+2
* Add const to several API functions that take char *.Jeremy Hylton2005-12-101-9/+9
* PEP 342 implementation. Per Guido's comments, the generator throw()Phillip J. Eby2005-08-021-11/+44
* Flush out support for ``class B(): pass`` syntax by adding support to theBrett Cannon2005-04-091-6/+15
* SF patch #1007189, multi-line imports, for instance:Anthony Baxter2004-08-311-36/+88
* This is Mark Russell's patch:Michael W. Hudson2004-08-171-18/+14
* PEP-0318, @decorator-style. In Guido's words:Anthony Baxter2004-08-021-9/+62
* SF patch #872326: Generator expression implementationRaymond Hettinger2004-05-191-6/+115
* Getting rid of all the code inside #ifdef macintosh too.Jack Jansen2003-11-201-4/+0
* Merge 23c1-branch back into the head. Barry will send email about theTim Peters2003-07-211-4/+12
* Don't use (PyObject *)PyObject_Type(x). It is a leaky and verbose wayGuido van Rossum2003-04-091-2/+2
* Remove duplicate code introduced by fixing bug #678518Neal Norwitz2003-02-101-3/+0
* Remove unused variable.Guido van Rossum2003-02-091-1/+0
* Apply logistix's patch fromMichael W. Hudson2003-02-081-3/+43
* Teach the parsermodule about floor division. FixesMichael W. Hudson2003-01-291-0/+2
* SF patch [ 597919 ] compiler package and SET_LINENOJeremy Hylton2002-12-311-6/+7
* Allow more docstrings to be removed during compilation in some modulesNeal Norwitz2002-08-131-20/+20
* Replace DL_IMPORT with PyMODINIT_FUNC and remove "/export:init..." linkMark Hammond2002-07-231-2/+2
* staticforward bites the dust.Jeremy Hylton2002-07-171-12/+7
* Patch #568124: Add doc string macros.Martin v. Löwis2002-06-131-8/+5
* Disambiguate the grammar for backtick.Guido van Rossum2002-05-241-1/+13
* Patch supplied by Burton Radons for his own SF bug #487390: ModifyingGuido van Rossum2001-12-081-1/+1
* Fix memory leak in the parser module: There were two leaks inFred Drake2001-12-051-5/+22
* Very subtle syntax change: in a list comprehension, the testlist inGuido van Rossum2001-10-151-1/+9
* Use the abstract object interfaces when digging around in module objectsFred Drake2001-08-151-19/+19