COMMITS
/ Python/ceval.c August 11, 2000
T
Merge UNPACK_LIST and UNPACK_TUPLE into a single UNPACK_SEQUENCE, since they
Thomas Wouters committed
August 7, 2000
M
Initialized opcode and oparg to silence a gcc -Wall warning.
Moshe Zadka committed
July 25, 2000
T
Use 'void' directly instead of the ANY #define, now that all code is ANSI C.
Thomas Wouters committed
July 22, 2000
T
Mass ANSIfication of function definitions. Doesn't cover all 'extern'
Thomas Wouters committed
July 16, 2000
T
Spelling fixes supplied by Rob W. W. Hooft. All these are fixes in either
Thomas Wouters committed
July 11, 2000
J
Include macglue.h for some function prototypes, and renamed a few
Jack Jansen committed
July 9, 2000
T
Nuke all remaining occurrences of Py_PROTO and Py_FPROTO.
Tim Peters committed
June 30, 2000
G
Change copyright notice - 2nd try.
Guido van Rossum committed
G
Change copyright notice.
Guido van Rossum committed
June 28, 2000
G
Trent Mick's Win64 changes: size_t vs. int or long; also some overflow
Guido van Rossum committed
May 8, 2000
G
Trent Mick:
Guido van Rossum committed
May 4, 2000
G
Add useless 'return 1' to prtrace() to shut up VC++.
Guido van Rossum committed
May 3, 2000
G
Vladimir Marangozov's long-awaited malloc restructuring.
Guido van Rossum committed
April 21, 2000
G
Charles Waldman writes:
Guido van Rossum committed
April 10, 2000
G
Skip Montanaro: add string precisions to calls to PyErr_Format
Guido van Rossum committed
March 31, 2000
G
Thomas Heller fixes a typo in an error message.
Guido van Rossum committed
J
rename args variable in CALL_FUNCTION to callargs (avoids name
Jeremy Hylton committed
March 30, 2000
J
Two fixes for extended call syntax:
Jeremy Hylton committed
March 29, 2000
B
eval_code2(): Oops, in the last checkin, we shouldn't check for
Barry Warsaw committed
B
eval_code2(): In the extended calling syntax opcodes, you must check
Barry Warsaw committed
March 28, 2000
J
slightly modified version of Greg Ewing's extended call syntax patch
Jeremy Hylton committed
February 23, 2000
A
Allow using long integers as slice indexes
Andrew M. Kuchling committed
February 21, 2000
F
Remove comment that Guido agree's doesn't make sense:
Fred Drake committed
January 12, 2000
G
Fix a bug in exec_statement() noted incidentally by Tim Peters in
Guido van Rossum committed
November 15, 1999
G
Change the last PyErr_Format %s format to %.400s.
Guido van Rossum committed
October 26, 1999
G
Fix PR117. The error message is "keywords must be strings". Perhaps
Guido van Rossum committed
September 8, 1999
B
call_trace(): A fix for PR#73, if an exception occurred in the
Barry Warsaw committed
June 22, 1999
G
Patch by Tim Peters:
Guido van Rossum committed
April 7, 1999
G
Changes by Mark Hammond for Windows CE. Mostly of the form
Guido van Rossum committed
March 9, 1999
G
Always test for an error return (usually NULL or -1) without setting
Guido van Rossum committed
December 21, 1998
G
Thanks to Chris Herborth, the thread primitives now have proper Py*
Guido van Rossum committed
G
Use PyThreadState_GET() macro.
Guido van Rossum committed
December 4, 1998
G
Use PyInt_AS_LONG macro instead of explicit inlining.
Guido van Rossum committed
November 23, 1998
G
Whoops! One the "redundant" initializations removed by Vladimir in
Guido van Rossum committed
November 17, 1998
G
Remove some redundant initializations -- patch by Vladimir Marangozov.
Guido van Rossum committed
October 7, 1998
G
Changes to support other object types besides strings
Guido van Rossum committed
October 1, 1998
G
Renamed thread.h to pythread.h.
Guido van Rossum committed
August 25, 1998
G
Add the type of the object to the error message about calling a non-function.
Guido van Rossum committed
August 4, 1998
G
In BUILD_LIST, use PyList_SET_ITEM() instead of PyList_SetItem(); and
Guido van Rossum committed
July 8, 1998
G
# In case BINARY_SUBSCR, use proper PyList_GET* macros instead of inlining.
Guido van Rossum committed
G
Marc-Andre Lemburg's patch to support instance methods with other
Guido van Rossum committed
May 22, 1998
G
Moved cmp_member() to abstract.c, as PySequence_Contains() [with
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
May 12, 1998
G
DELETE_FAST should issue an exception when the local variable is undefined.
Guido van Rossum committed
April 10, 1998
G
Make new gcc -Wall happy
Guido van Rossum committed
April 9, 1998
G
Make first raise argument optional
Guido van Rossum committed
December 31, 1997
G
Last-minute fix for Jim H: don't die after del sys.stdout
Guido van Rossum committed
December 26, 1997
G
Plug the most annoying recursive printing problem -- reset '_' to None
Guido van Rossum committed
November 19, 1997
G
Give more detailed error message when the argument count isn't right.
Guido van Rossum committed
November 11, 1997
G
Fix memory leak in exec statement with code object -- the None returned
Guido van Rossum committed