summaryrefslogtreecommitdiff
path: root/Modules/parsermodule.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* parser__pickler(): Don't drop the third argument toFred Drake1999-09-201-5/+11
* Added keyword parameter support to all public interfaces; keywordFred Drake1999-09-091-62/+76
* When the parameter to PyInt_AsLong() has already been checked withFred Drake1999-02-171-2/+2
* Add DL_EXPORT() to all modules that could possibly be usedGuido van Rossum1998-12-041-1/+1
* parser__pickler(): Use Py_DECREF() when reference is known to be non-NULL.Fred Drake1998-08-041-1/+1
* Sorry, the initializer for ob_type must really be NULL,Guido van Rossum1998-05-291-1/+1
* parser_compare_nodes(): Corrected a minor type error; eliminate one GCCFred Drake1998-05-111-1/+1
* Made lint a bit happier.Fred Drake1998-04-291-54/+80
* Add a declaration for strdup() for the Mac.Guido van Rossum1998-04-281-0/+3
* In method & function tables, added a cast for the function pointers to keepFred Drake1998-04-211-16/+21
* The documentation threatened it would happen -- the functions that shouldFred Drake1998-04-131-35/+97
* Added support for pickling ast objects.Fred Drake1998-04-131-14/+65
* Make new gcc -Wall happyGuido van Rossum1998-04-101-2/+4
* Support raise with no parameters.Fred Drake1998-04-101-3/+4
* Remove requirement for strdup() since it causes so many troubles for too manyFred Drake1997-10-091-4/+4
* Put back the extern declaration for strdup(), between #ifndef MS_WINDOWS.Guido van Rossum1997-10-081-0/+3
* initparser(): Use PyErr_NewException() to create the exception.Fred Drake1997-10-071-1/+1
* Removed extern declaration of strdup(). Doesn't appear to be important andFred Drake1997-09-301-10/+0
* Add doc string to type object.Fred Drake1997-05-231-1/+12
* Support assert stmt.Guido van Rossum1997-04-021-1/+32
* Initialize the ob_type field of PyAST_Type dynamically (inGuido van Rossum1997-01-231-3/+7
* Keep gcc -Wall happy.Guido van Rossum1996-12-051-2/+2
* New permission notice, includes CNRI.Guido van Rossum1996-10-251-10/+17
* (parsermodule.c): Fixed sloppy typo: '==' -> '='Fred Drake1996-09-111-2/+2