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
*
merge 3.2 (#11627)
Benjamin Peterson
2011-07-15
1
-0/+7
|
\
|
*
catch nasty exception classes with __new__ that doesn't return a exception (c...
Benjamin Peterson
2011-07-15
1
-0/+7
*
|
no one passes NULL here (or should anyway)
Benjamin Peterson
2011-07-03
1
-3/+0
*
|
convert generator exc state functions into static functions
Benjamin Peterson
2011-07-03
1
-54/+62
*
|
merge 3.2
Benjamin Peterson
2011-07-03
1
-4/+36
|
\
\
|
|
/
|
*
never retain a generator's caller's exception state on the generator after a ...
Benjamin Peterson
2011-07-03
1
-4/+36
*
|
merge 3.2 (#12475)
Benjamin Peterson
2011-07-03
1
-4/+5
|
\
\
|
|
/
|
*
restore a generator's caller's exception state both on yield and (last) return
Benjamin Peterson
2011-07-03
1
-4/+5
*
|
map cells to arg slots at code creation time (closes #12399)
Benjamin Peterson
2011-06-26
1
-48/+16
*
|
give the names of missing positional or keyword-only arguments (closes #12356)
Benjamin Peterson
2011-06-24
1
-23/+118
*
|
greatly improve argument parsing error messages (closes #12265)
Benjamin Peterson
2011-06-06
1
-137/+166
*
|
Issue #1856: Avoid crashes and lockups when daemon threads run while the
Antoine Pitrou
2011-05-04
1
-0/+6
|
\
\
|
|
/
|
*
Issue #1856: Avoid crashes and lockups when daemon threads run while the
Antoine Pitrou
2011-05-04
1
-0/+6
*
|
Issue #7330, #10833: Replace %100s by %.100s and %200s by %.200s
Victor Stinner
2011-03-22
1
-1/+1
*
|
#11565: Merge with 3.2.
Ezio Melotti
2011-03-16
1
-2/+2
|
\
\
|
|
/
|
*
#11565: Merge with 3.1.
Ezio Melotti
2011-03-16
1
-2/+2
|
|
\
|
|
*
#11565: Fix several typos. Patch by Piotr Kasprzyk.
Ezio Melotti
2011-03-16
1
-2/+2
|
|
*
Merged revisions 87796 via svnmerge from
David Malcolm
2011-01-06
1
-4/+5
|
|
*
Merged revisions 82181 via svnmerge from
Stefan Krah
2010-06-23
1
-40/+40
|
|
*
Recorded merge of revisions 81032 via svnmerge from
Antoine Pitrou
2010-05-09
1
-3490/+3490
|
|
*
Merged revisions 78875 via svnmerge from
Victor Stinner
2010-03-21
1
-2/+2
|
|
*
Merged revisions 78766 via svnmerge from
Benjamin Peterson
2010-03-07
1
-1/+1
|
|
*
Merged revisions 75984 via svnmerge from
Mark Dickinson
2009-10-31
1
-1/+19
*
|
|
Issue #8914: fix various warnings from the Clang static analyzer v254.
Brett Cannon
2011-02-22
1
-2/+2
*
|
|
Remove filename variable from ceval.c
Victor Stinner
2011-02-21
1
-16/+0
|
/
/
*
|
Issue #10655: Fix the build on PowerPC on Linux with GCC when building with
David Malcolm
2011-01-06
1
-4/+5
*
|
Merge branches/pep-0384.
Martin v. Löwis
2010-12-03
1
-3/+4
*
|
Remove redundant includes of headers that are already included by Python.h.
Georg Brandl
2010-11-30
1
-1/+0
*
|
make hashes always the size of pointers; introduce Py_hash_t #9778
Benjamin Peterson
2010-10-17
1
-1/+1
*
|
ceval.c: catch recursion error on _PyUnicode_AsString(co->co_filename)
Victor Stinner
2010-10-13
1
-0/+4
*
|
revert r85003, poorly considered; breaks tests
Benjamin Peterson
2010-09-25
1
-1/+1
*
|
don't count keyword arguments as positional #9943
Benjamin Peterson
2010-09-25
1
-1/+1
*
|
Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly
Antoine Pitrou
2010-09-13
1
-4/+9
*
|
typo
Benjamin Peterson
2010-09-10
1
-2/+2
*
|
use Py_REFCNT
Benjamin Peterson
2010-09-10
1
-2/+2
*
|
remove gil_drop_request in --without-threads
Benjamin Peterson
2010-09-10
1
-4/+13
*
|
use DISPATCH() instead of continue
Benjamin Peterson
2010-09-10
1
-1/+1
*
|
#4617: Previously it was illegal to delete a name from the local
Amaury Forgeot d'Arc
2010-09-10
1
-16/+34
*
|
Issue #9225: Remove the ROT_FOUR and DUP_TOPX opcode, the latter replaced
Antoine Pitrou
2010-09-04
1
-38/+9
*
|
Issue #9425: save/restore exception on filename encoding
Victor Stinner
2010-08-17
1
-1/+6
*
|
Issue #9203: Computed gotos are now enabled by default on supported
Antoine Pitrou
2010-08-13
1
-4/+17
*
|
revert unintended changes
Benjamin Peterson
2010-07-20
1
-8/+8
*
|
move test_trace.py so as not to conflict with future tests for the trace module
Benjamin Peterson
2010-07-20
1
-8/+8
*
|
#3071: tell how many values were expected when unpacking too many.
Georg Brandl
2010-07-10
1
-1/+2
*
|
only take into account positional arguments count in related error messages
Benjamin Peterson
2010-06-25
1
-3/+3
*
|
Issue #8930: Remaining indentation fixes after the Grand Unified Indenting.
Stefan Krah
2010-06-23
1
-42/+42
*
|
use atomic structures in non-thread version
Benjamin Peterson
2010-05-30
1
-1/+1
*
|
Recorded merge of revisions 81029 via svnmerge from
Antoine Pitrou
2010-05-09
1
-3559/+3559
*
|
read eval_breaker with atomic api with computed gotos
Benjamin Peterson
2010-05-03
1
-1/+1
*
|
Make (most of) Python's tests pass under Thread Sanitizer.
Jeffrey Yasskin
2010-05-03
1
-19/+44
[next]