summaryrefslogtreecommitdiff
path: root/Modules/parsermodule.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-33308: Fix a crash in the parser module when convert an ST object. ...Serhiy Storchaka2018-04-191-3/+3
* [2.7] [3.5] bpo-30070: Fixed leaks and crashes in errors handling in the pars...Serhiy Storchaka2017-04-201-32/+73
* Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size.Serhiy Storchaka2015-12-191-1/+1
* Issue #16714: use 'raise' exceptions, don't 'throw'.Andrew Svetlov2012-12-181-3/+3
* Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors...Antoine Pitrou2012-08-151-5/+13
* #15512: Declarations reorganizationJesus Cea2012-08-031-21/+23
* Closes #15512: Correct __sizeof__ support for parserJesus Cea2012-08-031-2/+21
* #11515: fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-151-1/+1
* Issue #9130: Fix validation of relative imports in parser module.Mark Dickinson2010-07-041-3/+4
* Issue #9128: Validate class decorator syntax correctly in parser module.Mark Dickinson2010-07-041-8/+9
* Issue #9125: Update parser module for "except ... as ..." syntax.Mark Dickinson2010-06-301-4/+7
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-99/+99
* Issue #2333: Backport set and dict comprehensions syntax.Alexandre Vassalotti2010-01-111-32/+56
* Issue #2335: Backport set literals syntax from Python 3.x.Alexandre Vassalotti2010-01-091-23/+50
* Allow multiple context managers in one with statement, as proposedGeorg Brandl2009-05-251-15/+18
* Issue #5918: Fix a crash in the parser module.Antoine Pitrou2009-05-141-2/+2
* #4529: fix parser's validation for try-except-finally statements.Georg Brandl2008-12-051-23/+23
* #4396 make the parser module correctly validate the with syntaxBenjamin Peterson2008-11-241-1/+37
* #4048 make the parser module accept relative imports as validBenjamin Peterson2008-11-031-2/+2
* make sure the parser flags and passed onto the compilerBenjamin Peterson2008-10-311-7/+36
* 3k-warn about parser's "ast" aliases.Georg Brandl2008-07-231-5/+37
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-7/+7
* Renamed PyString to PyBytesChristian Heimes2008-05-261-7/+7
* Revert copy_reg -> copyreg rename.Georg Brandl2008-05-201-1/+1
* Added module stub for copy_reg renaming in 3.0.Alexandre Vassalotti2008-05-111-1/+1
* Patch #1759: Backport of PEP 3129 class decoratorsChristian Heimes2008-02-231-10/+25
* Modified PyImport_Import and PyImport_ImportModule to always use absolute imp...Christian Heimes2008-01-031-1/+1
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-3/+3
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-5/+4
* Expose column offset information in parse trees.Jeremy Hylton2006-08-221-15/+30
* Replace PyObject_CallFunction calls with only object argsGeorg Brandl2006-05-251-2/+2
* Update for new grammarNeal Norwitz2006-04-121-4/+4
* Years in the making.Tim Peters2006-03-261-5/+5
* SF #1445431, fix some leaks in error conditions.Neal Norwitz2006-03-201-9/+14
* 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