summaryrefslogtreecommitdiffstats
path: root/Parser
Commit message (Expand)AuthorAgeFilesLines
* Fis SF bug #442647: not all forms of legal future statements wereGuido van Rossum2001-07-191-3/+9
* Add a really stupid warning about 'yield' used as an identifier.Guido van Rossum2001-07-171-0/+12
* Ugly. A pile of new xxxFlags() functions, to communicate to the parserTim Peters2001-07-161-5/+22
* Preliminary support for "from __future__ import generators" to enableGuido van Rossum2001-07-152-3/+36
* SF but #417587: compiler warnings compiling 2.1.Tim Peters2001-04-211-3/+0
* RISCOS changes by dschwertberger.Guido van Rossum2001-03-022-0/+17
* Take output filenames as arguments instead of hard-coding them.Neil Schemenauer2001-02-161-9/+14
* Superseded by $(srcdir)/Makefile.pre.in.Neil Schemenauer2001-02-031-103/+0
* Fix a bug in stack overflow error handling. This fixes half of BugGuido van Rossum2000-10-021-1/+1
* More limits.h stuff in node.c.Tim Peters2000-09-261-9/+1
* Rationalize use of limits.h, moving the inclusion to Python.h.Fred Drake2000-09-261-3/+0
* Move down the INT_MAX logic, because HAVE_LIMITS_H was always undefinedVladimir Marangozov2000-09-031-6/+6
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-0120-180/+0
* Added a little more dependency information.Fred Drake2000-08-311-1/+1
* Charles Waldman's patch to reinitialize the interpreter lock after aGuido van Rossum2000-08-271-0/+3
* Support for three-token characters (**=, >>=, <<=) which was written byThomas Wouters2000-08-242-0/+106
* Charles G. Waldman <cgw@fnal.gov>:Fred Drake2000-08-241-1/+6
* Simplified inclusions and avoid prototypes copied in from elsewhere.Fred Drake2000-08-231-12/+1
* PyParser_ParseString(): When the err_ret structure is initialized, theBarry Warsaw2000-08-181-0/+2
* merge Include/my*.h into Include/pyport.hPeter Schneider-Kamp2000-07-311-1/+0
* Use 'void' directly instead of the ANY #define, now that all code is ANSI C.Thomas Wouters2000-07-251-2/+1
* Removed all instances of RETSIGTYPE from the source code: signalTim Peters2000-07-231-3/+2
* Recent ANSIfication introduced a couple instances ofTim Peters2000-07-231-3/+1
* Remember to return something if RETSIGTYPE is not 'void'. Do we still needThomas Wouters2000-07-221-0/+3
* Mass ANSIfication.Thomas Wouters2000-07-2216-330/+123
* Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in eitherThomas Wouters2000-07-161-1/+1
* Create two new exceptions: IndentationError and TabError. These areFred Drake2000-07-114-13/+20
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-0916-54/+51
* Include limits.h if we have it.Jack Jansen2000-07-031-0/+3
* Change copyright notice - 2nd try.Guido van Rossum2000-06-3020-120/+0
* Change copyright notice.Guido van Rossum2000-06-3020-429/+129
* Trent Mick: familiar simple Win64 patchesGuido van Rossum2000-06-284-11/+14
* Jack Jansen: Removed Macintosh tab-guessing codeGuido van Rossum2000-06-281-7/+0
* Add new parser error code, E_OVERFLOW. This error is returned whenJeremy Hylton2000-06-202-17/+23
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-034-15/+18
* Ignore a bunch of generated files.Barry Warsaw2000-05-021-0/+3
* Only write message about changed Tab size with -v.Guido van Rossum2000-04-031-1/+2
* Fix by Eric Raymond: make the code that looks for various bits ofGuido van Rossum2000-03-311-15/+30
* Marc-Andre Lemburg: add new string token types u"..." and ur"..."Guido van Rossum2000-03-101-0/+10
* Make sure that -t and -tt also work on strings passed to compile().Guido van Rossum1998-12-211-0/+7
* One more fprintf bites the dist -- use PySys_WriteStderrGuido van Rossum1998-12-041-1/+1
* Need to add default decl of DL_IMPORT, for mymalloc.hGuido van Rossum1998-12-041-0/+6
* Changes to deal with the sigcheck+intrcheck vs. signalmodule controversy.Guido van Rossum1998-10-071-2/+7
* The previous fix was still broken; the Py_END_ALLOW_THREADS macro wasGuido van Rossum1998-08-291-1/+3
* We now assume that PyOS_Readline() is called with the interpreter lockGuido van Rossum1998-08-271-11/+3
* Replace all calls to fprintf(stderr, ...) with PySys_WriteStderr(...).Guido van Rossum1998-08-251-5/+6
* Add a version of PySys_WriteStderr() that writes to stderr, so we canGuido van Rossum1998-08-251-0/+27
* There's a bunch of files that shouldn't be included in libpython*.a!Guido van Rossum1998-08-091-4/+5
* Make new gcc -Wall happyGuido van Rossum1998-04-102-2/+2
* Declare and use Py_TabcheckFlag here.Guido van Rossum1998-04-101-0/+8