summaryrefslogtreecommitdiffstats
path: root/Modules/parsermodule.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #6697: Fixed instances of _PyUnicode_AsString() result not checked for ...Alexander Belopolsky2010-12-081-0/+13
* Remove redundant includes of headers that are already included by Python.h.Georg Brandl2010-11-301-2/+0
* Issue #9130: Validate ellipsis tokens in relative imports.Mark Dickinson2010-07-041-6/+6
* Issue #9130: Fix validation of relative imports in parser module.Mark Dickinson2010-07-041-3/+4
* Issue #9128: Fix validation of class decorators in parser module.Mark Dickinson2010-07-041-8/+9
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-102/+102
* fix an ambiguity in the grammar from the implementation of extended unpackingBenjamin Peterson2009-09-271-29/+45
* Merged revisions 72924 via svnmerge fromGeorg Brandl2009-05-251-15/+18
* Merged revisions 72645 via svnmerge fromAntoine Pitrou2009-05-141-2/+2
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Issue #1717, stage 2: remove uses of tp_compare in Modules and mostMark Dickinson2009-02-011-13/+59
* Merged revisions 67463,67572,67576,67628 via svnmerge fromGeorg Brandl2008-12-071-23/+23
* Merged revisions 67348,67355,67359,67362,67364-67365,67367-67368,67398,67423-...Benjamin Peterson2008-11-301-1/+37
* Merged revisions 67028,67040,67044,67046,67052,67065,67070,67077,67082 via sv...Benjamin Peterson2008-11-031-2/+2
* Merged revisions 67066 via svnmerge fromBenjamin Peterson2008-10-311-7/+36
* Rename PyUnicode_AsString -> _PyUnicode_AsString andMarc-André Lemburg2008-08-071-2/+2
* Remove "ast" aliases from the parser module.Georg Brandl2008-07-231-17/+5
* #3247 Get rid of Py_FindMethod; use tp_members instead.Amaury Forgeot d'Arc2008-07-021-30/+32
* Implement PEP 3121: new module initialization and finalization API.Martin v. Löwis2008-06-111-13/+26
* Rename copy_reg module to copyreg.Alexandre Vassalotti2008-05-111-1/+1
* Issue #1950: Fixed misusage of PyUnicode_AsString().Alexandre Vassalotti2008-05-031-8/+6
* Merged revisions 59666-59679 via svnmerge fromChristian 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-3/+3
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-9/+9
* 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