summaryrefslogtreecommitdiffstats
path: root/Objects/frameobject.c
Commit message (Expand)AuthorAgeFilesLines
* Issue #14432: Remove the thread state field from the frame structure. Fix aVictor Stinner2013-12-131-1/+0
* frameobject.c: Use an identifer instead of creating explicitly an internedVictor Stinner2013-11-071-7/+5
* Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handleVictor Stinner2013-10-291-27/+50
* Issue #17934: Add a clear() method to frame objects, to help clean up expensi...Antoine Pitrou2013-08-051-2/+26
* Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macrosVictor Stinner2013-06-041-8/+3
* Backout c89febab4648 following private feedback by Guido.Antoine Pitrou2013-05-141-234/+20
* Issue #17807: Generators can now be finalized even when they are part of a re...Antoine Pitrou2013-05-081-20/+234
* Issue #9566: Use the right type to fix a compiler warnings on Win64Victor Stinner2012-10-301-4/+4
* Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allo...David Malcolm2012-06-221-0/+10
* Issue #14909: A number of places were using PyMem_Realloc() apis andKristjan Valur Jonsson2012-05-311-2/+4
* Issue #14385: Support other types than dict for __builtins__Victor Stinner2012-04-181-4/+2
* merge 3.2 (#14612)Benjamin Peterson2012-04-181-2/+4
|\
| * SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (clos...Benjamin Peterson2012-04-181-2/+4
* | perform yield from delegation by repeating YIELD_FROM opcode (closes #14230)Benjamin Peterson2012-03-151-4/+0
* | remove f_yieldfrom access from Python (closes #13970)Benjamin Peterson2012-03-051-1/+0
* | Implement PEP 380 - 'yield from' (closes #11682)Nick Coghlan2012-01-131-5/+10
|/
* Issue #9089: Remove references to intobject.c and intobject.h from comments.Mark Dickinson2010-06-271-1/+1
* Recorded merge of revisions 81029 via svnmerge fromAntoine Pitrou2010-05-091-718/+718
* Merged revisions 72487-72488,72879 via svnmerge fromAlexandre Vassalotti2009-07-211-13/+13
* Merged revisions 73129 via svnmerge fromAntoine Pitrou2009-06-011-1/+3
* Merged revisions 73114 via svnmerge fromAmaury Forgeot d'Arc2009-06-011-2/+2
* Merged revisions 72776,72796 via svnmerge fromJeffrey Yasskin2009-05-201-15/+22
* Merged revisions 71722 via svnmerge fromBenjamin Peterson2009-04-181-1/+3
* Issue #1717: rename tp_compare to tp_reserved. I'll change theMark Dickinson2009-02-021-1/+1
* Merged revisions 66739 via svnmerge fromChristian Heimes2008-10-021-1/+1
* Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-...Georg Brandl2008-07-231-3/+6
* Merged revisions 64842,64853,64856,64945 via svnmerge fromRobert Schuppenies2008-07-141-1/+24
* #3021: Antoine Pitrou's Lexical exception handlersBenjamin Peterson2008-06-111-3/+0
* Renamed PyString to PyBytesChristian Heimes2008-05-261-2/+2
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-161-3/+11
* Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,...Christian Heimes2008-02-061-3/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT.Christian Heimes2007-12-191-1/+1
* Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow.Martin v. Löwis2007-12-041-2/+16
* Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases i...Christian Heimes2007-12-021-2/+2
* Get rid of more uses of string and use unicodeNeal Norwitz2007-10-271-1/+1
* Merged revisions 56492-56752 via svnmerge fromGuido van Rossum2007-08-051-5/+5
* Merged revisions 56467-56482 via svnmerge fromMartin v. Löwis2007-07-211-3/+2
* Make identifiers str (not str8) objects throughout.Martin v. Löwis2007-06-101-3/+3
* Merged revisions 55270-55324 via svnmerge fromGuido van Rossum2007-05-141-6/+0
* Merged revisions 53952-54987 via svnmerge fromGuido van Rossum2007-04-271-81/+137
* Merged the int/long unification branch, by very crude means (sorry Thomas!).Guido van Rossum2007-01-141-1/+1
* Merged revisions 46753-51188 via svnmerge fromThomas Wouters2006-08-111-5/+10
* Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk.Thomas Wouters2006-05-271-96/+124
* Merge p3yk branch with the trunk up to revision 45595. This breaks a fairThomas Wouters2006-04-211-52/+44
* Merge ssize_t branch.Martin v. Löwis2006-02-151-11/+11
* Fix a bunch of imports to use code.h instead of compile.h.Jeremy Hylton2005-10-211-1/+0
* Merge ast-branch to headJeremy Hylton2005-10-201-0/+1
* SF Bug #215126: Over restricted type checking on eval() functionRaymond Hettinger2004-07-021-6/+9
* memset() with small memory sizes just kill us.Armin Rigo2004-03-201-2/+4
* Two forgotten Py_DECREF() for two out-of-memory conditions.Armin Rigo2004-01-271-2/+6