summaryrefslogtreecommitdiffstats
path: root/Objects/frameobject.c
Commit message (Expand)AuthorAgeFilesLines
* Merged revisions 71722,71725 via svnmerge fromBenjamin Peterson2009-04-181-8/+0
* Merged revisions 70463 via svnmerge fromBenjamin Peterson2009-03-181-1/+11
* Merged revisions 66739 via svnmerge fromChristian Heimes2008-10-021-1/+1
* Issue2378: pdb would delete free variables when stepping into a class statement.Amaury Forgeot d'Arc2008-07-211-3/+6
* Added additional __sizeof__ implementations and addressed comments made inRobert Schuppenies2008-07-101-1/+24
* This reverts r63675 based on the discussion in this thread:Gregory P. Smith2008-06-091-5/+5
* Renamed PyString to PyBytesChristian Heimes2008-05-261-5/+5
* Implemented Martin's suggestion to clear the free lists during the garbage co...Christian Heimes2008-02-141-3/+11
* Unified naming convention for free lists and their limits. All free listsChristian Heimes2008-02-061-3/+4
* #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFC...Christian Heimes2007-12-191-1/+1
* PEP 3123: Provide forward compatibility with Python 3.0, while keepingMartin v. Löwis2007-07-211-3/+2
* Silence a compiler warning about incompatible pointer types.Brett Cannon2007-04-191-1/+1
* Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed...Kristján Valur Jónsson2007-04-131-2/+2
* tabifyJeremy Hylton2007-02-271-97/+97
* Fix assertion.Jeremy Hylton2007-02-261-2/+2
* Do not copy free variables to locals in class namespaces.Jeremy Hylton2007-02-261-19/+75
* Move the initialization of some pointers earlier. The problem isNeal Norwitz2006-07-211-1/+1
* Get rid of f_restricted too. Doc the other 4 ints that were already removedNeal Norwitz2006-06-121-2/+7
* f_code can't be NULL based on Frame_New and other code that derefs it.Neal Norwitz2006-06-111-2/+2
* fix broken mergeRichard Jones2006-05-231-7/+2
* Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects.Richard Jones2006-05-231-34/+32
* Merge from rjones-funccall branch.Richard Jones2006-05-231-62/+97
* frame_clear(): Explain why it's important to make the frameTim Peters2006-04-151-18/+11
* frame_traverse(): Use the standard Py_VISIT macro.Tim Peters2006-04-151-16/+14
* Trimmed trailing whitespace.Tim Peters2006-04-151-13/+12
* Fix SF#1470508: crash in generator cycle finalization. There were twoPhillip J. Eby2006-04-151-9/+11
* Use macro versions instead of function versions when we already know the type.Neal Norwitz2006-03-201-2/+2
* 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
* Removing bogus Py_DECREF() reported by Armin Rigo (SF bug 812353).Jeremy Hylton2003-10-211-1/+0
* Fix indentation.Jeremy Hylton2003-10-211-1/+1
* Fix silly typo in comment.Michael W. Hudson2003-08-111-1/+1
* Refactor the logic for setting f_builtins.Jeremy Hylton2003-02-051-24/+31
* Since the *_Init() are private, prefix with _, suggested by SkipNeal Norwitz2002-12-311-1/+1
* SF #561244, Micro optimizationsNeal Norwitz2002-12-301-9/+13
* Fix bug introduced by SF patch #643835, Set Next Statement for Python debuggersNeal Norwitz2002-12-191-4/+12
* Undefine MIN and MAX before definingNeal Norwitz2002-12-181-0/+2
* This is Richie Hindle's patchMichael W. Hudson2002-12-171-1/+259
* A slight change to SET_LINENO-less tracing.Michael W. Hudson2002-09-111-2/+36
* SF #561244: micro optimizations, builtins cannot be NULL, so use Py_INCREFNeal Norwitz2002-08-291-1/+1
* Check in my ultra-shortlived patch #597220.Michael W. Hudson2002-08-191-3/+3
* This is my patchMichael W. Hudson2002-08-151-2/+12
* Tim found that once test_longexp has run, test_sort takes very muchGuido van Rossum2002-08-011-5/+3
* Fix SF bug #505315: Make free and cell vars show up consistently in locals().Jeremy Hylton2002-04-201-6/+7
* SF bug 543148: Memory leak with stackframes + inspect.Tim Peters2002-04-131-2/+17
* This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction).Guido van Rossum2002-03-281-1/+1