1. 25de0dd Fix compilation error with gcc 4.3.2 by Antoine Pitrou · 15 years ago
  2. b02ceda #4547: When debugging a very large function, it was not always by Amaury Forgeot d'Arc · 15 years ago
  3. c8d30fe Fix issue #1689458 by teaching frame_setlineno how to jump to the first line of by Jeffrey Yasskin · 15 years ago
  4. 61328ee While I was modifying test_trace, it threw an exception when I accidentally by Jeffrey Yasskin · 15 years ago
  5. f7f858d Issue 5954, PyFrame_GetLineNumber: by Jeffrey Yasskin · 15 years ago
  6. d4d400c try to initalize all builtin types with PyType_Ready to avoid problems like #5787 by Benjamin Peterson · 16 years ago
  7. 6ffe852 fix strange errors when setting attributes on tracebacks #4034 by Benjamin Peterson · 16 years ago
  8. f09925d add py3k warnings to frame.f_exc_* by Benjamin Peterson · 16 years ago
  9. 25584b1 Fixed a comment to C89 style as of http://drj11.wordpress.com/2008/10/02/python-and-bragging-about-c89/ by Christian Heimes · 16 years ago
  10. e4921fe Issue2378: pdb would delete free variables when stepping into a class statement. by Amaury Forgeot d'Arc · 16 years ago
  11. 9be2ec1 Added additional __sizeof__ implementations and addressed comments made in by Robert Schuppenies · 16 years ago
  12. dd96db6 This reverts r63675 based on the discussion in this thread: by Gregory P. Smith · 16 years ago
  13. 593daf5 Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  14. 3b718a7 Implemented Martin's suggestion to clear the free lists during the garbage collection of the highest generation. by Christian Heimes · 17 years ago
  15. 5b970ad Unified naming convention for free lists and their limits. All free lists by Christian Heimes · 17 years ago
  16. e93237d #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. Macros for b/w compatibility are available. by Christian Heimes · 17 years ago
  17. 6819210 PEP 3123: Provide forward compatibility with Python 3.0, while keeping by Martin v. Löwis · 17 years ago
  18. f64c900 Silence a compiler warning about incompatible pointer types. by Brett Cannon · 18 years ago
  19. 2f2f579 Fix a bug when using the __lltrace__ opcode tracer, and a problem sith signed chars in frameobject.c which can occur with opcodes > 127 by Kristján Valur Jónsson · 18 years ago
  20. 18623e2 tabify by Jeremy Hylton · 18 years ago
  21. a892554 Fix assertion. by Jeremy Hylton · 18 years ago
  22. 759410b Do not copy free variables to locals in class namespaces. by Jeremy Hylton · 18 years ago
  23. 1adbb50 Move the initialization of some pointers earlier. The problem is by Neal Norwitz · 18 years ago
  24. b9845e7 Get rid of f_restricted too. Doc the other 4 ints that were already removed by Neal Norwitz · 18 years ago
  25. 7d5b6e8 f_code can't be NULL based on Frame_New and other code that derefs it. by Neal Norwitz · 18 years ago
  26. a372711 fix broken merge by Richard Jones · 18 years ago
  27. cebbefc Applied patch 1337051 by Neal Norwitz, saving 4 ints on frame objects. by Richard Jones · 18 years ago
  28. 7c88dcc Merge from rjones-funccall branch. by Richard Jones · 18 years ago
  29. adcd25e frame_clear(): Explain why it's important to make the frame by Tim Peters · 19 years ago
  30. de2acf6 frame_traverse(): Use the standard Py_VISIT macro. by Tim Peters · 19 years ago
  31. a13131c Trimmed trailing whitespace. by Tim Peters · 19 years ago
  32. 8ebb28d Fix SF#1470508: crash in generator cycle finalization. There were two by Phillip J. Eby · 19 years ago
  33. 2aa9a5d Use macro versions instead of function versions when we already know the type. by Neal Norwitz · 19 years ago
  34. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  35. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  36. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  37. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  38. 75be012 memset() with small memory sizes just kill us. by Armin Rigo · 21 years ago
  39. 76beca9 Two forgotten Py_DECREF() for two out-of-memory conditions. by Armin Rigo · 21 years ago
  40. e4b9d8c Removing bogus Py_DECREF() reported by Armin Rigo (SF bug 812353). by Jeremy Hylton · 21 years ago
  41. 174d276 Fix indentation. by Jeremy Hylton · 21 years ago
  42. bdc6ea1 Fix silly typo in comment. by Michael W. Hudson · 21 years ago
  43. bd5cbf8 Refactor the logic for setting f_builtins. by Jeremy Hylton · 22 years ago
  44. b2501f4 Since the *_Init() are private, prefix with _, suggested by Skip by Neal Norwitz · 22 years ago
  45. c91ed40 SF #561244, Micro optimizations by Neal Norwitz · 22 years ago
  46. ee65e22 Fix bug introduced by SF patch #643835, Set Next Statement for Python debuggers by Neal Norwitz · 22 years ago
  47. 91787cb Undefine MIN and MAX before defining by Neal Norwitz · 22 years ago
  48. cfd3884 This is Richie Hindle's patch by Michael W. Hudson · 22 years ago
  49. 02ff6a9 A slight change to SET_LINENO-less tracing. by Michael W. Hudson · 22 years ago
  50. d94c28e SF #561244: micro optimizations, builtins cannot be NULL, so use Py_INCREF by Neal Norwitz · 22 years ago
  51. 69734a5 Check in my ultra-shortlived patch #597220. by Michael W. Hudson · 22 years ago
  52. dd32a91 This is my patch by Michael W. Hudson · 22 years ago
  53. f4be427 Tim found that once test_longexp has run, test_sort takes very much by Guido van Rossum · 22 years ago
  54. 24ea8d3 Fix SF bug #505315: Make free and cell vars show up consistently in locals(). by Jeremy Hylton · 23 years ago
  55. b7ba743 SF bug 543148: Memory leak with stackframes + inspect. by Tim Peters · 23 years ago
  56. ff413af This is Neil's fix for SF bug 535905 (Evil Trashcan and GC interaction). by Guido van Rossum · 23 years ago
  57. 1a48ca8 Fix memory leak in dict_to_map(), SF bug [ #485152 ] memory leak in test_scope. by Jeremy Hylton · 23 years ago
  58. 32d34c8 Add optional docstrings to getset descriptors. Fortunately, there's by Guido van Rossum · 23 years ago
  59. 6f79937 Add optional docstrings to member descriptors. For backwards by Guido van Rossum · 23 years ago
  60. deb77e8 Squash new compiler wng in debug build. by Tim Peters · 23 years ago
  61. 4f4817f Make frames a PyVarObject. Use new GC API. by Neil Schemenauer · 23 years ago
  62. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  63. 19cd292 GC for frame objects. by Neil Schemenauer · 23 years ago
  64. 8c96369 PyFrameObject: rename f_stackbottom to f_stacktop, since it points to by Tim Peters · 23 years ago
  65. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  66. 4c88901 SF patch 419176 from MvL; fixed bug 418977 by Jeremy Hylton · 23 years ago
  67. 6b356e7 Make one more private symbol static. by Guido van Rossum · 24 years ago
  68. f68d8e5 Make some private symbols static. by Guido van Rossum · 24 years ago
  69. 220ae7c Fix PyFrame_FastToLocals() and counterpart to deal with cells and by Jeremy Hylton · 24 years ago
  70. 30c9f39 Variety of small INC/DECREF patches that fix reported memory leaks by Jeremy Hylton · 24 years ago
  71. 2b724da Remove f_closure slot of frameobject and use f_localsplus instead. by Jeremy Hylton · 24 years ago
  72. 64949cb PEP 227 implementation by Jeremy Hylton · 24 years ago
  73. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  74. 1b190b4 ANSI-fication of the sources. by Fred Drake · 24 years ago
  75. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  76. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  77. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  78. d724b23 Christian Tismer's "trashcan" patch: by Guido van Rossum · 25 years ago
  79. bffd683 The rest of the changes by Trent Mick and Dale Nagata for warning-free by Guido van Rossum · 25 years ago
  80. f61618c A Py_DECREF(f) is missing in PyFrame_New for the error case when by Guido van Rossum · 26 years ago
  81. 67906af In PyFrame_New(), don't set extras to something derived from code by Guido van Rossum · 26 years ago
  82. e23eb57 Since PyDict_GetItem() can't raise an exception any more, there's no by Guido van Rossum · 26 years ago
  83. bde6ff7 Vladimir Marangozov' performance hack: copy f_builtins from ancestor by Guido van Rossum · 27 years ago
  84. 6345ac6 Add cast to realloc/malloc call to shut up AIX compiler. (Vladimir Marangozov) by Guido van Rossum · 27 years ago
  85. 404b95d Provide a dummy empty directory as f_builtins instead of failing, when by Guido van Rossum · 27 years ago
  86. eb46d67 Avoid function calls to access the current thread state and builtins by Guido van Rossum · 27 years ago
  87. a027efa Massive changes for separate thread state management. by Guido van Rossum · 27 years ago
  88. 1875247 Quickly renamed. by Guido van Rossum · 27 years ago
  89. 6191551 Remove a redundant XINCREF(value). This caused the reference count of by Guido van Rossum · 28 years ago
  90. 7582bfb Kill all local variables when the frame is deallocated (moved here by Guido van Rossum · 28 years ago
  91. 747596a When a recycled frame has more local+stack slots than needed, by Guido van Rossum · 28 years ago
  92. 3bb63a8 Bugfix: remove ref to fast before it's defined. by Guido van Rossum · 28 years ago
  93. f3e85a0 Changes that appear to give another 12% speedup. by Guido van Rossum · 28 years ago
  94. b56933e Intern the strings "__builtins__". by Guido van Rossum · 28 years ago
  95. 792fd43 Comment out extend_stack() -- it is no longer needed. by Guido van Rossum · 28 years ago
  96. da9c271 Make gcc -Wall happy by Guido van Rossum · 28 years ago
  97. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  98. bdd207a better policy regarding NULL locals by Guido van Rossum · 29 years ago
  99. 2271bf7 changes for keyword arguments and fast function call; added abstract.c by Guido van Rossum · 29 years ago
  100. 5b7f3cd Use mappinglookup instead of dictlookup for looking up __builtin__. by Sjoerd Mullender · 30 years ago