COMMITS
/ Python/compile.c March 29, 2000
J
remove reference (vestigal) to CALL_FUNCTION_STAR
Jeremy Hylton committed
March 28, 2000
J
slightly modified version of Greg Ewing's extended call syntax patch
Jeremy Hylton committed
March 10, 2000
G
Marc-Andre Lemburg: support for Unicode string literals (u"...", ur"...").
Guido van Rossum committed
December 20, 1999
G
The cleanup code in com-init() at label fail_0000 should remove
Guido van Rossum committed
September 15, 1999
G
Tim Peters writes:
Guido van Rossum committed
January 28, 1999
G
Implement -OO; "unsafe" optimization that removes docstrings.
Guido van Rossum committed
December 10, 1998
G
Remove prototypes for PyOS_strto[u]l -- Chris Herborth.
Guido van Rossum committed
G
Add more SET_LINENO instructions in long argument lists
Guido van Rossum committed
October 7, 1998
G
Changes to support other object types besides strings
Guido van Rossum committed
October 2, 1998
G
Eh, better error message for the previous change. It now says
Guido van Rossum committed
G
Treat def f(a, b=1, c): ... as an error (missing default for c)
Guido van Rossum committed
August 25, 1998
G
Comment out the print statement about underflow. (This only seems to
Guido van Rossum committed
May 14, 1998
G
Since PyDict_GetItem() can't raise an exception any more, there's no
Guido van Rossum committed
April 9, 1998
G
Make first raise argument optional
Guido van Rossum committed
October 20, 1997
G
Don't use sscanf(s, "%x", &c) to parse \xX... escapes; hardcode it.
Guido van Rossum committed
October 8, 1997
G
Fixed for WITHOUT_COMPLEX compilation (Jack)
Guido van Rossum committed
August 29, 1997
G
Cprrect stuoid tyops -- was comparing variabes with themselves because
Guido van Rossum committed
July 25, 1997
G
Plug a leak in code_dealloc() (and reordered the deallocs to match the
Guido van Rossum committed
July 10, 1997
G
Fix bug reported by Just: anonymous arguments used for tuples should
Guido van Rossum committed
May 23, 1997
G
PyObject_Compare can raise an exception now.
Guido van Rossum committed
May 20, 1997
G
Indent the #error directives so a classic K&R cpp doesn't see them.
Guido van Rossum committed
May 9, 1997
G
Get rid of obsolete support for access statement.
Guido van Rossum committed
May 7, 1997
G
Instead of importing graminit.h whenever one of the three grammar 'root'
Guido van Rossum committed
April 29, 1997
G
Quickly renamed the remaining files -- this directory is done.
Guido van Rossum committed
April 9, 1997
G
Tweaks to keep the Microsoft compiler quier.
Guido van Rossum committed
April 6, 1997
G
Support for alternative string quotes (a"xx", b"xx", c"xx", ...).
Guido van Rossum committed
April 2, 1997
G
Added assert statement.
Guido van Rossum committed
March 14, 1997
G
New form of PyFPE_END_PROTECT macro.
Guido van Rossum committed
March 11, 1997
G
Fix dumb bug calling parsestrplus with wrong node as argument.
Guido van Rossum committed
G
Added support for ``if __debug__:'' -- if -O is given, this form is
Guido van Rossum committed
March 3, 1997
G
Add global Py_OptimizeFlag. SET_LINENO is omitted again unless this is
Guido van Rossum committed
February 14, 1997
G
Changes for Lee Busby's SIGFPE patch set.
Guido van Rossum committed
January 24, 1997
G
Instead of emitting SET_LINENO instructions, generate a line number
Guido van Rossum committed
January 18, 1997
G
Remove unused variable.
Guido van Rossum committed
G
Intern all names and varnames in newcodeobject(), plus those string
Guido van Rossum committed
January 17, 1997
G
Add co_stacksize field to codeobject structure, and stacksize argument
Guido van Rossum committed
January 6, 1997
G
Check for duplicate keyword arguments at compile time.
Guido van Rossum committed
December 5, 1996
G
Keep gcc -Wall happy.
Guido van Rossum committed
October 25, 1996
G
New permission notice, includes CNRI.
Guido van Rossum committed
October 11, 1996
G
Ellipses -> Ellipsis rename (the dictionary really says that it should
Guido van Rossum committed
September 17, 1996
G
Added line number to most compile-time error messages.
Guido van Rossum committed
August 24, 1996
G
Afterthough: leave both leading underscores in,
Guido van Rossum committed
G
Oops need to mangle global statement separately
Guido van Rossum committed
G
Name mangling, what the heck!
Guido van Rossum committed
August 12, 1996
G
Disable support for access statement
Guido van Rossum committed
August 8, 1996
G
Removed unused var; added error check for ``lambda: x=1''.
Guido van Rossum committed
July 30, 1996
G
Changes for slice and ellipses
Guido van Rossum committed
July 21, 1996
G
Py_complex; and WITHOUT_COMPLEX added to getargs.c
Guido van Rossum committed
January 26, 1996
G
only use 'j' for imaginary constants
Guido van Rossum committed
January 25, 1996
J
Removed unused var
Jack Jansen committed