summaryrefslogtreecommitdiffstats
path: root/Modules/parsermodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Elaborate a comment.Fred Drake2001-07-191-1/+4
* The syntax trees handled by this module are not "abstract," so take theFred Drake2001-07-171-132/+136
* Add support for yield statements.Fred Drake2001-07-171-1/+17
* Properly use &&. Closes bug #434989.Martin v. Löwis2001-06-231-1/+1
* Fix problems with validation of import statement parse trees.Fred Drake2001-01-071-5/+24
* validate_varargslist(): Fix two bugs in this function, one that affectedFred Drake2000-12-111-11/+20
* Ka-Ping Yee <ping@lfw.org>:Fred Drake2000-10-241-21/+21
* Simplify some of the code. Use PyErr_Format() instead of sprintf(), etc.Fred Drake2000-09-121-186/+122
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* Do the absolute minimal amount of modifications to eradicateBarry Warsaw2000-09-011-5/+4
* Try to supply a prototype for the module init function but avoidTim Peters2000-08-261-1/+1
* Update the parser module to support augmented assignment.Fred Drake2000-08-251-6/+30
* validate_listmaker(): Revise to match Skip's latest changes to theFred Drake2000-08-231-6/+12
* Nuked unused variable.Tim Peters2000-08-221-1/+0
* Update to reflect recent grammar changes (list comprehensions, extendedFred Drake2000-08-211-178/+363
* ANSIfy a bit more.Thomas Wouters2000-07-241-1/+1
* Even more ANSIfication: fix as many function pointers and declarations asThomas Wouters2000-07-221-1/+1
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-3/+3
* replace PyXXX_Length calls with PyXXX_Size callsJeremy Hylton2000-07-121-5/+5
* ANSI-fyingPeter Schneider-Kamp2000-07-101-12/+4
* Remove use of HAVE_OLD_CPP to support non-ANSI preprocessors.Fred Drake2000-07-091-4/+0
* Remove warning about local variable possibly being using uninitialized;Fred Drake2000-07-041-1/+1
* Andrew Kuchling <akuchlin@mems-exchange.org>:Fred Drake2000-07-031-1/+1
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-4/+4
* validate_arglist(): Re-written to reflect extended call syntax.Fred Drake2000-04-251-3/+80
* ANSI-fy & de-tabify the source.Fred Drake2000-04-191-1505/+1317
* What used to be tp_xxx4 is now tp_flags; set it to Py_TPFLAGS_DEFAULT.Fred Drake2000-02-211-2/+1