summaryrefslogtreecommitdiff
path: root/Objects/frameobject.c
Commit message (Expand)AuthorAgeFilesLines
* Untabify C files. Will watch buildbots.Antoine Pitrou2010-05-091-731/+731
* Fix compilation error with gcc 4.3.2Antoine Pitrou2009-06-011-1/+3
* #4547: When debugging a very large function, it was not alwaysAmaury Forgeot d'Arc2009-06-011-2/+2
* Fix issue #1689458 by teaching frame_setlineno how to jump to the first line ofJeffrey Yasskin2009-05-201-14/+20
* While I was modifying test_trace, it threw an exception when I accidentallyJeffrey Yasskin2009-05-181-1/+2
* Issue 5954, PyFrame_GetLineNumber:Jeffrey Yasskin2009-05-081-13/+13
* try to initalize all builtin types with PyType_Ready to avoid problems like #...Benjamin Peterson2009-04-181-8/+0
* fix strange errors when setting attributes on tracebacks #4034Benjamin Peterson2009-03-181-1/+11
* add py3k warnings to frame.f_exc_*Benjamin Peterson2008-12-221-3/+35
* Fixed a comment to C89 style as of http://drj11.wordpress.com/2008/10/02/pyth...Christian 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