summaryrefslogtreecommitdiffstats
path: root/Python/compile.c
Commit message (Expand)AuthorAgeFilesLines
* Fix new compiler warnings. Unused var in compile.c. Argsize mismatchesTim Peters2000-08-151-1/+0
* Remove the osdefs.h #include; it was not needed in the final version ofFred Drake2000-08-151-1/+0
* When raising a SyntaxError, make a best-effort attempt to set theFred Drake2000-08-151-9/+29
* The list comp patch checked for the second child node of the 'listmaker'Thomas Wouters2000-08-131-1/+1
* The list comprehensions patch partly reversed the removal of UNPACK_LIST,Thomas Wouters2000-08-121-13/+0
* list comprehensions. seeSkip Montanaro2000-08-121-14/+129
* Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since theyThomas Wouters2000-08-111-18/+5
* When returning an error from jcompile() (which is passed through byGuido van Rossum2000-08-071-0/+8
* Fix some strange indentation and grammar that have been bugging me forThomas Wouters2000-08-051-6/+5
* Mass ANSIfication of function definitions. Doesn't cover all 'extern'Thomas Wouters2000-07-221-324/+104
* just fixing the indentationPeter Schneider-Kamp2000-07-131-1/+1
* raise error on duplicate function argumentsPeter Schneider-Kamp2000-07-131-1/+10
* Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.Tim Peters2000-07-091-29/+29
* Include limits.h if we have it.Jack Jansen2000-07-031-0/+3
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-22/+7
* Trent Mick <trentm@activestate.com>:Fred Drake2000-06-301-2/+2
* Trent Mick's Win64 changes: size_t vs. int or long; also some overflowGuido van Rossum2000-06-281-8/+12
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-1/+1
* Marc-Andre Lemburg:Guido van Rossum2000-05-011-1/+1
* Charles G Waldman:Guido van Rossum2000-04-281-36/+49
* M.-A. Lemburg <mal@lemburg.com>:Fred Drake2000-04-131-2/+23
* Patch by Vladimir Marangozov to include the function name whenGuido van Rossum2000-04-101-2/+6
* Vladimir Marangozov: This fixes the line number in the stringGuido van Rossum2000-04-071-4/+2
* remove reference (vestigal) to CALL_FUNCTION_STARJeremy Hylton2000-03-291-1/+1
* slightly modified version of Greg Ewing's extended call syntax patchJeremy Hylton2000-03-281-2/+23
* Marc-Andre Lemburg: support for Unicode string literals (u"...", ur"...").Guido van Rossum2000-03-101-3/+22
* The cleanup code in com-init() at label fail_0000 should removeGuido van Rossum1999-12-201-1/+1
* Tim Peters writes:Guido van Rossum1999-09-151-1/+1
* Implement -OO; "unsafe" optimization that removes docstrings.Guido van Rossum1999-01-281-0/+3
* Remove prototypes for PyOS_strto[u]l -- Chris Herborth.Guido van Rossum1998-12-101-3/+0
* Add more SET_LINENO instructions in long argument listsGuido van Rossum1998-12-101-1/+7
* Changes to support other object types besides stringsGuido van Rossum1998-10-071-6/+17
* Eh, better error message for the previous change. It now saysGuido van Rossum1998-10-021-1/+1
* Treat def f(a, b=1, c): ... as an error (missing default for c)Guido van Rossum1998-10-021-7/+4
* Comment out the print statement about underflow. (This only seems toGuido van Rossum1998-08-251-2/+2
* Since PyDict_GetItem() can't raise an exception any more, there's noGuido van Rossum1998-05-141-1/+0
* Make first raise argument optionalGuido van Rossum1998-04-091-6/+10
* Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it.Guido van Rossum1997-10-201-3/+10
* Fixed for WITHOUT_COMPLEX compilation (Jack)Guido van Rossum1997-10-081-1/+2
* Cprrect stuoid tyops -- was comparing variabes with themselves becauseGuido van Rossum1997-08-291-3/+3
* Plug a leak in code_dealloc() (and reordered the deallocs to match theGuido van Rossum1997-07-251-3/+2
* Fix bug reported by Just: anonymous arguments used for tuples shouldGuido van Rossum1997-07-101-1/+3
* PyObject_Compare can raise an exception now.Guido van Rossum1997-05-231-1/+2
* Indent the #error directives so a classic K&R cpp doesn't see them.Guido van Rossum1997-05-201-3/+3
* Get rid of obsolete support for access statement.Guido van Rossum1997-05-091-67/+0
* Instead of importing graminit.h whenever one of the three grammar 'root'Guido van Rossum1997-05-071-0/+14
* Quickly renamed the remaining files -- this directory is done.Guido van Rossum1997-04-291-312/+331
* Tweaks to keep the Microsoft compiler quier.Guido van Rossum1997-04-091-1/+4
* Support for alternative string quotes (a"xx", b"xx", c"xx", ...).Guido van Rossum1997-04-061-3/+6