summaryrefslogtreecommitdiff
path: root/Python/ceval.c
Commit message (Expand)AuthorAgeFilesLines
* [2.7] bpo-35441: Remove dead and buggy code related to PyList_SetItem(). (GH-...Serhiy Storchaka2018-12-191-2/+2
* ceval.c: mark debug 'filename' variable as unused (GH-11074)Victor Stinner2018-12-101-3/+7
* [2.7] bpo-34234: Use _PyAnyInt_Check() and _PyAnyInt_CheckExact(). (GH-8479)Serhiy Storchaka2018-07-311-2/+1
* Clear possible exception before calling PyTuple_Pack in IMPORT_NAME (GH-6033)Xiang Zhang2018-03-091-1/+8
* bpo-32616: Disable computed gotos by default for clang < 5 (GH-5574)INADA Naoki2018-02-071-2/+10
* bpo-30281: Fix the default value for stop in PySlice_Unpack() (#1531) (#1480)Xiang Zhang2017-05-101-1/+1
* bpo-29935: Fixed error messages in the index() method of tuple and list (#887...Serhiy Storchaka2017-03-301-1/+21
* bpo-29655: Fixed possible reference leaks in `import *`. (#301) (#510)Serhiy Storchaka2017-03-081-0/+1
* bpo-28598: Support __rmod__ for RHS subclasses of str in % string formatting ...Xiang Zhang2017-03-011-2/+6
* Issue #26020: Fix evaluation order for set literalsRaymond Hettinger2016-09-081-2/+4
* Issue #4806: Avoid masking TypeError when *-unpacking a generatorMartin Panter2016-01-311-2/+4
* Issue #26200: Added Py_SETREF and replaced Py_XSETREF with Py_SETREFSerhiy Storchaka2016-04-101-1/+1
* Issue #22570: Renamed Py_SETREF to Py_XSETREF.Serhiy Storchaka2016-04-061-1/+1
* Issue #20440: Massive replacing unsafe attribute setting code with specialSerhiy Storchaka2015-12-241-2/+1
* remove tabs from ceval.c (closes #24895)Benjamin Peterson2015-08-191-173/+173
* Added the const qualifier for char* argument of Py_EnterRecursiveCall().Serhiy Storchaka2015-06-211-1/+1
* sync opcode prediction code with python 3Benjamin Peterson2015-06-011-10/+4
* backport computed gotos (#4753)Benjamin Peterson2015-05-281-230/+551
* Issue #18028: Fix aliasing issue in READ_TIMESTAMP() of ceval.c on x86_64,Victor Stinner2014-12-121-3/+5
* Issue #21963: backout issue #1856 patch (avoid crashes and lockups whenAntoine Pitrou2014-11-211-12/+0
* Issue #22453: Fexed reference leaks when format error messages in ceval.c.Serhiy Storchaka2014-11-191-4/+16
* restore runtime exec test (#21591)Benjamin Peterson2014-08-091-0/+9
* Issue #21591: Handle exec backwards compatibility in the AST builder.Dirkjan Ochtman2014-07-291-9/+0
* check if the thread is finalizing after retaking the GILBenjamin Peterson2014-06-161-0/+7
* avoid crashes and lockups from daemon threads during interpreter shutdown (#1...Benjamin Peterson2014-06-161-0/+6
* Issue #20437: Fixed 43 potential bugs when deleting objects references.Serhiy Storchaka2014-02-091-2/+1
* port 8d05f697acd4 (#11627)Benjamin Peterson2011-07-151-2/+10
* #11565: Fix several typos. Patch by Piotr Kasprzyk.Ezio Melotti2011-03-161-2/+2
* Merged revisions 87796 via svnmerge fromDavid Malcolm2011-01-061-4/+5
* Rolled back revisions 85003 via svnmerge fromBenjamin Peterson2010-09-251-1/+1
* Merged revisions 85003 via svnmerge fromBenjamin Peterson2010-09-251-1/+1
* Issue #8930: Remaining indentation fixes after the Grand Unified Indenting.Stefan Krah2010-06-231-57/+57
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-3964/+3964
* Remove an unneeded variable increment.Brett Cannon2010-05-051-1/+0
* Partially revert the over-reaching r80813.Brett Cannon2010-05-051-0/+1
* Remove three unneeded variable assignments.Brett Cannon2010-05-051-1/+0
* Issue #8276: PyEval_CallObject() is now only available in macro form. TheAntoine Pitrou2010-04-011-12/+1
* take into account keyword arguments when passing too many argsBenjamin Peterson2010-03-211-1/+1
* improve error message from passing inadequate number of keyword arguments #6474Benjamin Peterson2010-03-211-5/+7
* co_varnames is certainly a tuple, so let's not waste time finding outBenjamin Peterson2010-03-211-1/+1
* remove pointless conditionBenjamin Peterson2010-03-211-15/+13
* flatten conditionBenjamin Peterson2010-03-211-8/+6
* more specific exception for wrong kind of raise #8082Benjamin Peterson2010-03-071-2/+3
* remove pointless error checkingBenjamin Peterson2010-02-061-3/+0
* normalize exceptions passed to the __exit__ method #7853Benjamin Peterson2010-02-051-5/+9
* Issue #2333: Backport set and dict comprehensions syntax.Alexandre Vassalotti2010-01-111-0/+26
* Issue #2335: Backport set literals syntax from Python 3.x.Alexandre Vassalotti2010-01-091-0/+19
* Issue #7406: Fix some occurrences of potential signed overflow in intMark Dickinson2009-12-021-2/+6
* Issue #6603: Fix --with-tsc build failures on x86-64 that resultedMark Dickinson2009-10-311-1/+19
* small optimization: avoid popping the current block until we have toBenjamin Peterson2009-07-011-5/+5