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
*
Changes by Mark Hammond for Windows CE. Mostly of the form
Guido van Rossum
1999-04-07
1
-0/+2
*
Always test for an error return (usually NULL or -1) without setting
Guido van Rossum
1999-03-09
1
-3/+4
*
Thanks to Chris Herborth, the thread primitives now have proper Py*
Guido van Rossum
1998-12-21
1
-13/+13
*
Use PyThreadState_GET() macro.
Guido van Rossum
1998-12-21
1
-1/+1
*
Use PyInt_AS_LONG macro instead of explicit inlining.
Guido van Rossum
1998-12-04
1
-6/+6
*
Whoops! One the "redundant" initializations removed by Vladimir in
Guido van Rossum
1998-11-23
1
-2/+2
*
Remove some redundant initializations -- patch by Vladimir Marangozov.
Guido van Rossum
1998-11-17
1
-4/+4
*
Changes to support other object types besides strings
Guido van Rossum
1998-10-07
1
-5/+8
*
Renamed thread.h to pythread.h.
Guido van Rossum
1998-10-01
1
-1/+1
*
Add the type of the object to the error message about calling a non-function.
Guido van Rossum
1998-08-25
1
-3/+5
*
In BUILD_LIST, use PyList_SET_ITEM() instead of PyList_SetItem(); and
Guido van Rossum
1998-08-04
1
-3/+1
*
# In case BINARY_SUBSCR, use proper PyList_GET* macros instead of inlining.
Guido van Rossum
1998-07-08
1
-3/+3
*
Marc-Andre Lemburg's patch to support instance methods with other
Guido van Rossum
1998-07-08
1
-0/+5
*
Moved cmp_member() to abstract.c, as PySequence_Contains() [with
Guido van Rossum
1998-05-22
1
-53/+2
*
Since PyDict_GetItem() can't raise an exception any more, there's no
Guido van Rossum
1998-05-14
1
-3/+0
*
DELETE_FAST should issue an exception when the local variable is undefined.
Guido van Rossum
1998-05-12
1
-0/+7
*
Make new gcc -Wall happy
Guido van Rossum
1998-04-10
1
-1/+2
*
Make first raise argument optional
Guido van Rossum
1998-04-09
1
-0/+12
*
Last-minute fix for Jim H: don't die after del sys.stdout
Guido van Rossum
1997-12-31
1
-2/+11
*
Plug the most annoying recursive printing problem -- reset '_' to None
Guido van Rossum
1997-12-26
1
-3/+8
*
Give more detailed error message when the argument count isn't right.
Guido van Rossum
1997-11-19
1
-4/+6
*
Fix memory leak in exec statement with code object -- the None returned
Guido van Rossum
1997-11-11
1
-2/+4
*
Change PyEval_SaveThread() and PyEval_RestoreThread() to always do the
Guido van Rossum
1997-09-30
1
-12/+9
*
First part of package support.
Guido van Rossum
1997-09-05
1
-10/+4
*
Inline PyObject_CallObject (Marc-Andre Lemburg).
Guido van Rossum
1997-08-30
1
-0/+5
*
eval_code2(), set_exc_info(): Call PyErr_NormalizeException() the
Barry Warsaw
1997-08-28
1
-2/+2
*
unpack_sequence(): In finally clause, watch out for Py_DECREF
Barry Warsaw
1997-08-25
1
-2/+2
*
eval_code2(): collapsed the implementations of UNPACK_TUPLE and
Barry Warsaw
1997-08-25
1
-33/+74
*
cmp_exception gets promoted (essentially) to the C API function
Barry Warsaw
1997-08-22
1
-59/+10
*
Reverse the search order for the Don Beaudry hook so that the first
Guido van Rossum
1997-08-22
1
-4/+3
*
Renamed a local label that was accidentally grandly renamed to
Guido van Rossum
1997-08-05
1
-3/+3
*
The last of the mass checkins for separate (sub)interpreters.
Guido van Rossum
1997-08-02
1
-9/+20
*
Extend the "Don Beaudry hack" with "Guido's corollary" -- if the base
Guido van Rossum
1997-07-31
1
-10/+27
*
Moved PyEval_{Acquire,Release}Thread() to within the same #ifdef
Guido van Rossum
1997-07-19
1
-21/+23
*
PyEval_SaveThread() and PyEval_RestoreThread() now return/take a
Guido van Rossum
1997-07-18
1
-6/+28
*
Huge speedup by inlining some common integer operations:
Guido van Rossum
1997-07-17
1
-5/+75
*
PyObject_Compare can raise an exception now.
Guido van Rossum
1997-05-23
1
-0/+7
*
Py_FlushLine and PyFile_WriteString now return error indicators
Guido van Rossum
1997-05-22
1
-12/+24
*
Plug leak of stack frame object in exception handling code.
Guido van Rossum
1997-05-20
1
-9/+26
*
Logic for enabling mac-specific signal handling fixed (Jack)
Guido van Rossum
1997-05-20
1
-1/+1
*
(int) cast for strlen() to keep picky compilers happy.
Guido van Rossum
1997-05-13
1
-1/+1
*
Instead of importing graminit.h whenever one of the three grammar 'root'
Guido van Rossum
1997-05-07
1
-3/+3
*
Used operators from abstract.h where possible (arithmetic operators,
Guido van Rossum
1997-05-06
1
-420/+30
*
Massive changes for separate thread state management.
Guido van Rossum
1997-05-05
1
-151/+263
*
Quickly renamed.
Guido van Rossum
1997-04-29
1
-799/+798
*
Clarify error message for unexpected keyword parameter.
Guido van Rossum
1997-03-10
1
-1/+4
*
*Don't* kill all local variables on function exit. This will be done
Guido van Rossum
1997-02-14
1
-12/+0
*
Two small changes:
Guido van Rossum
1997-01-27
1
-5/+3
*
Plug a leak with calling something other than a function or method is
Guido van Rossum
1997-01-27
1
-4/+3
*
Patches for (two forms of) optional dynamic execution profiling --
Guido van Rossum
1997-01-24
1
-0/+68
[next]