summaryrefslogtreecommitdiffstats
path: root/Objects/frameobject.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Fix memory leak in dict_to_map(), SF bug [ #485152 ] memory leak in test_scope.Jeremy Hylton2001-12-061-8/+11
* Add optional docstrings to getset descriptors. Fortunately, there'sGuido van Rossum2001-09-201-1/+1
* Add optional docstrings to member descriptors. For backwardsGuido van Rossum2001-09-201-1/+1
* Squash new compiler wng in debug build.Tim Peters2001-08-301-1/+1
* Make frames a PyVarObject. Use new GC API.Neil Schemenauer2001-08-291-30/+14
* Merge of descr-branch back into trunk.Tim Peters2001-08-021-14/+21
* GC for frame objects.Neil Schemenauer2001-07-121-12/+101
* PyFrameObject: rename f_stackbottom to f_stacktop, since it points toTim Peters2001-06-231-3/+5
* Merging the gen-branch into the main line, at Guido's direction. Yay!Tim Peters2001-06-181-0/+6
* SF patch 419176 from MvL; fixed bug 418977Jeremy Hylton2001-05-081-6/+3
* Make one more private symbol static.Guido van Rossum2001-04-141-1/+1
* Make some private symbols static.Guido van Rossum2001-04-141-1/+1
* Fix PyFrame_FastToLocals() and counterpart to deal with cells andJeremy Hylton2001-03-211-20/+68
* Variety of small INC/DECREF patches that fix reported memory leaksJeremy Hylton2001-03-131-3/+4
* Remove f_closure slot of frameobject and use f_localsplus instead.Jeremy Hylton2001-01-291-23/+14
* PEP 227 implementationJeremy Hylton2001-01-251-3/+21
* REMOVED all CWI, CNRI and BeOpen copyright markings.Guido van Rossum2000-09-011-9/+0
* ANSI-fication of the sources.Fred Drake2000-07-091-27/+10
* Change copyright notice - 2nd try.Guido van Rossum2000-06-301-6/+0
* Change copyright notice.Guido van Rossum2000-06-301-21/+6
* Vladimir Marangozov's long-awaited malloc restructuring.Guido van Rossum2000-05-031-9/+8
* Christian Tismer's "trashcan" patch:Guido van Rossum2000-03-131-0/+2
* The rest of the changes by Trent Mick and Dale Nagata for warning-freeGuido van Rossum2000-01-201-2/+2
* A Py_DECREF(f) is missing in PyFrame_New for the error case whenGuido van Rossum1998-10-191-4/+4
* In PyFrame_New(), don't set extras to something derived from codeGuido van Rossum1998-09-251-1/+2
* Since PyDict_GetItem() can't raise an exception any more, there's noGuido van Rossum1998-05-141-4/+1
* Vladimir Marangozov' performance hack: copy f_builtins from ancestorGuido van Rossum1998-02-191-3/+14
* Add cast to realloc/malloc call to shut up AIX compiler. (Vladimir Marangozov)Guido van Rossum1997-10-311-2/+3
* Provide a dummy empty directory as f_builtins instead of failing, whenGuido van Rossum1997-08-051-7/+22
* Avoid function calls to access the current thread state and builtinsGuido van Rossum1997-08-021-4/+2
* Massive changes for separate thread state management.Guido van Rossum1997-05-051-2/+13
* Quickly renamed.Guido van Rossum1997-04-291-100/+101
* Remove a redundant XINCREF(value). This caused the reference count ofGuido van Rossum1997-04-031-1/+0
* Kill all local variables when the frame is deallocated (moved hereGuido van Rossum1997-02-141-1/+11
* When a recycled frame has more local+stack slots than needed,Guido van Rossum1997-01-241-2/+4
* Bugfix: remove ref to fast before it's defined.Guido van Rossum1997-01-201-1/+1