COMMITS
/ Python/ceval.c February 10, 2006
T
Explain the clearing of the stack in a comment in Python/ceval.c's
Thomas Wouters committed
December 10, 2005
J
Add const to several API functions that take char *.
Jeremy Hylton committed
October 21, 2005
N
Fix some mods that got dropped from the AST merge
Neal Norwitz committed
October 20, 2005
J
Merge ast-branch to head
Jeremy Hylton committed
September 20, 2005
A
clean-up tracing of C functions. In particular, don't call the trace func
Armin Rigo committed
August 15, 2005
B
Port from the Python 2.4 branch, patches for SF bug # 900092,
Barry Warsaw committed
August 2, 2005
P
PEP 342 implementation. Per Guido's comments, the generator throw()
Phillip J. Eby committed
June 25, 2005
B
Fix signedness of various char variables to stop causing a warning under gcc 4.
Brett Cannon committed
B
Add comments about PyThreadState and the usage of its fields.
Brett Cannon committed
April 4, 2005
H
Make a handy macro, Py_DEFAULT_RECURSION_LIMIT to allow to define
Hye-Shik Chang committed
January 18, 2005
M
Change the name of the macro used by --with-tsc builds to the less
Michael W. Hudson committed
January 8, 2005
S
comment tweak
Skip Montanaro committed
November 23, 2004
K
Hye-Shik Chang's fix for Bug 875692.
Kurt B. Kaiser committed
October 11, 2004
T
SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick
Tim Peters committed
September 16, 2004
R
SF bug #1014215: Unspecific errors with metaclass
Raymond Hettinger committed
August 29, 2004
M
Centralize WITH_TSC processing.
Martin v. Löwis committed
August 12, 2004
M
This is my patch:
Michael W. Hudson committed
August 7, 2004
A
This was quite a dark bug in my recent in-place string concatenation
Armin Rigo committed
August 6, 2004
R
SF patch #980695: efficient string concatenation
Raymond Hettinger committed
August 2, 2004
M
Fix for the unfortunate fact that PyDict_GetItem and PyObject_GetItem
Michael W. Hudson committed
R
Completed the patch for Bug #215126.
Raymond Hettinger committed
July 8, 2004
N
Remove unused macros in .c files
Neal Norwitz committed
July 7, 2004
M
This closes patch:
Michael W. Hudson committed
July 2, 2004
R
SF Bug #215126: Over restricted type checking on eval() function
Raymond Hettinger committed
June 27, 2004
M
Patch #966493: Cleanup generator/eval_frame exposure.
Martin v. Löwis committed
June 26, 2004
R
Get ceval.c to compile again by moving declarations before other statments.
Raymond Hettinger committed
June 25, 2004
N
Massive performance improvement for C extension and builtin tracing code
Nicholas Bastin committed
June 22, 2004
N
Less ugly #ifdefs for C profiling fix
Nicholas Bastin committed
N
One forgotten C profiling #ifdef
Nicholas Bastin committed
N
Making C profiling a configure option (at least temporarily)
Nicholas Bastin committed
June 21, 2004
R
Install two code generation optimizations that depend on NOP.
Raymond Hettinger committed
June 17, 2004
A
Performance tweak: allow stack_pointer and oparg to be register variables.
Armin Rigo committed
June 8, 2004
M
Patch #510695: Add TSC profiling for the VM.
Martin v. Löwis committed
June 5, 2004
R
SF bug #963956: Bad error mesage when subclassing a module
Raymond Hettinger committed
June 1, 2004
M
Patch #957398: Add public API for Generator Object/Type.
Martin v. Löwis committed
April 11, 2004
R
Some (but not all) of the why code bitfield tests ran faster as
Raymond Hettinger committed
April 10, 2004
R
Revert 2.393, elimination of pre-decrementing, which
Raymond Hettinger committed
April 7, 2004
R
Use continue instead of break whereever possible.
Raymond Hettinger committed
R
* Improve readability and remove data dependencies by converting
Raymond Hettinger committed
R
Small code improvements for readability, code size, and/or speed.
Raymond Hettinger committed
April 6, 2004
R
Simplify previous checkin (bitfields for WHY codes).
Raymond Hettinger committed
R
Coded WHY flags as bitfields (taking inspiration from tp_flags).
Raymond Hettinger committed
April 5, 2004
T
Since the fast_yield branch target was introduced, it appears that most
Tim Peters committed
March 24, 2004
N
Changed random calls to PyThreadState_Get() to use the macro
Nicholas Bastin committed
N
Enable the profiling of C functions (builtins and extensions)
Nicholas Bastin committed
March 22, 2004
A
Fix SF bug #765624.
Armin Rigo committed
March 20, 2004
A
Cancelled checkin, sorry.
Armin Rigo committed
A
A 2% speed improvement with gcc on low-endian machines. My guess is that this
Armin Rigo committed
March 12, 2004
R
LIST_APPEND is predicably followed by JUMP_ABSOLUTE.
Raymond Hettinger committed
R
Move the code for BREAK and CONTINUE_LOOP to be near FOR_ITER.
Raymond Hettinger committed