index
:
cpython.git
2.7
3.3
3.4
3.5
3.6
benjamin-clang
benjamin-iteration-torture
buildbot-custom
master
https://github.com/python/cpython.git
summary
refs
log
tree
commit
diff
stats
log msg
author
committer
range
path:
root
/
Python
/
ceval.c
Commit message (
Expand
)
Author
Age
Files
Lines
*
Revert the following revisions, as they don't fix security
Martin v. Löwis
2008-03-02
1
-5/+3
*
Backport of r52862.
Armin Rigo
2006-11-29
1
-1/+3
*
[Bug #1542016] Report PCALL_POP value. This makes the return value of sys.ca...
Andrew M. Kuchling
2006-10-27
1
-2/+2
*
[Backport r46044 | neal.norwitz]
Andrew M. Kuchling
2006-10-06
1
-0/+4
*
[Backport r51245 | neal.norwitz]
Andrew M. Kuchling
2006-10-04
1
-1/+7
*
Backport r42894: SF #1444030 Fix several potential defects found
Hye-Shik Chang
2006-03-07
1
-1/+4
*
Return value off PyErr_Warn() for raising string exceptions was not being
Brett Cannon
2006-02-27
1
-3/+5
*
Bug #801349: document that start/stop/step slice arguments can be None
Georg Brandl
2006-02-19
1
-1/+1
*
Cast assignments to ``unsigned char *`` from PyString_AS_STRING() calls to
Brett Cannon
2006-02-16
1
-1/+1
*
(backport) tracing of C functions: don't call the trace func
Armin Rigo
2005-09-20
1
-26/+31
*
Fix for SF bug # 900092, hotshot.stats.load assertion failure. This patch
Barry Warsaw
2005-08-15
1
-8/+14
*
Hye-Shik Chang's fix for Bug 875692.
Kurt B. Kaiser
2004-11-23
1
-0/+6
*
SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick
Tim Peters
2004-10-11
1
-3/+6
*
SF bug #1014215: Unspecific errors with metaclass
Raymond Hettinger
2004-09-16
1
-4/+16
*
Centralize WITH_TSC processing.
Martin v. Löwis
2004-08-29
1
-37/+3
*
This is my patch:
Michael W. Hudson
2004-08-12
1
-1/+33
*
This was quite a dark bug in my recent in-place string concatenation
Armin Rigo
2004-08-07
1
-1/+1
*
SF patch #980695: efficient string concatenation
Raymond Hettinger
2004-08-06
1
-2/+91
*
Fix for the unfortunate fact that PyDict_GetItem and PyObject_GetItem
Michael W. Hudson
2004-08-02
1
-2/+4
*
Completed the patch for Bug #215126.
Raymond Hettinger
2004-08-02
1
-3/+3
*
Remove unused macros in .c files
Neal Norwitz
2004-07-08
1
-3/+0
*
This closes patch:
Michael W. Hudson
2004-07-07
1
-1/+1
*
SF Bug #215126: Over restricted type checking on eval() function
Raymond Hettinger
2004-07-02
1
-4/+16
*
Patch #966493: Cleanup generator/eval_frame exposure.
Martin v. Löwis
2004-06-27
1
-14/+6
*
Get ceval.c to compile again by moving declarations before other statments.
Raymond Hettinger
2004-06-26
1
-1/+2
*
Massive performance improvement for C extension and builtin tracing code
Nicholas Bastin
2004-06-25
1
-51/+27
*
Less ugly #ifdefs for C profiling fix
Nicholas Bastin
2004-06-22
1
-12/+5
*
One forgotten C profiling #ifdef
Nicholas Bastin
2004-06-22
1
-1/+2
*
Making C profiling a configure option (at least temporarily)
Nicholas Bastin
2004-06-22
1
-0/+12
*
Install two code generation optimizations that depend on NOP.
Raymond Hettinger
2004-06-21
1
-0/+3
*
Performance tweak: allow stack_pointer and oparg to be register variables.
Armin Rigo
2004-06-17
1
-7/+16
*
Patch #510695: Add TSC profiling for the VM.
Martin v. Löwis
2004-06-08
1
-2/+150
*
SF bug #963956: Bad error mesage when subclassing a module
Raymond Hettinger
2004-06-05
1
-0/+9
*
Patch #957398: Add public API for Generator Object/Type.
Martin v. Löwis
2004-06-01
1
-138/+8
*
Some (but not all) of the why code bitfield tests ran faster as
Raymond Hettinger
2004-04-11
1
-3/+4
*
Revert 2.393, elimination of pre-decrementing, which
Raymond Hettinger
2004-04-10
1
-17/+13
*
Use continue instead of break whereever possible.
Raymond Hettinger
2004-04-07
1
-2/+8
*
* Improve readability and remove data dependencies by converting
Raymond Hettinger
2004-04-07
1
-14/+18
*
Small code improvements for readability, code size, and/or speed.
Raymond Hettinger
2004-04-07
1
-58/+54
*
Simplify previous checkin (bitfields for WHY codes).
Raymond Hettinger
2004-04-06
1
-12/+14
*
Coded WHY flags as bitfields (taking inspiration from tp_flags).
Raymond Hettinger
2004-04-06
1
-20/+16
*
Since the fast_yield branch target was introduced, it appears that most
Tim Peters
2004-04-05
1
-41/+41
*
Changed random calls to PyThreadState_Get() to use the macro
Nicholas Bastin
2004-03-24
1
-5/+5
*
Enable the profiling of C functions (builtins and extensions)
Nicholas Bastin
2004-03-24
1
-3/+48
*
Fix SF bug #765624.
Armin Rigo
2004-03-22
1
-5/+12
*
Cancelled checkin, sorry.
Armin Rigo
2004-03-20
1
-10/+6
*
A 2% speed improvement with gcc on low-endian machines. My guess is that this
Armin Rigo
2004-03-20
1
-6/+10
*
LIST_APPEND is predicably followed by JUMP_ABSOLUTE.
Raymond Hettinger
2004-03-12
1
-1/+5
*
Move the code for BREAK and CONTINUE_LOOP to be near FOR_ITER.
Raymond Hettinger
2004-03-12
1
-9/+9
*
Speedup for-loops by inlining PyIter_Next(). Saves duplicate tests
Raymond Hettinger
2004-03-12
1
-8/+10
[next]