1. 4a21e57 bpo-40268: Remove unused structmember.h includes (GH-19530) by Victor Stinner · 4 years, 6 months ago
  2. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 4 years, 6 months ago
  3. 87d3b9d bpo-39882: Add _Py_FatalErrorFormat() function (GH-19157) by Victor Stinner · 4 years, 6 months ago
  4. 7386a70 closes bpo-39630: Update pointers to string literals to be const char *. (GH-18510) by Andy Lester · 4 years, 8 months ago
  5. 629023c bpo-33387: Fix compiler warning in frame_block_unwind() (GH-18099) by Victor Stinner · 4 years, 8 months ago
  6. fee5526 Produce cleaner bytecode for 'with' and 'async with' by generating separate code for normal and exceptional paths. (#6641) by Mark Shannon · 4 years, 10 months ago
  7. bed4817 Make PyXXX_Fini() functions private (GH-15531) by Victor Stinner · 5 years ago
  8. ef61c52 bpo-37830: Fix compilation of break and continue in finally. (GH-15320) by Serhiy Storchaka · 5 years ago
  9. 530f506 bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (GH-13464) by Jeroen Demeyer · 5 years ago
  10. a24107b bpo-35459: Use PyDict_GetItemWithError() instead of PyDict_GetItem(). (GH-11112) by Serhiy Storchaka · 6 years ago
  11. 842acaa bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11175) by Zackery Spytz · 6 years ago
  12. d4f9cf5 bpo-33029: Fix signatures of getter and setter functions. (GH-10746) by Serhiy Storchaka · 6 years ago
  13. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 6 years ago
  14. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  15. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  16. 55edd0c bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH-6030) by Siddhesh Poyarekar · 6 years ago
  17. 078c4e3 bpo-33041: Fix downcast warning on Windows (#6595) by Victor Stinner · 6 years ago
  18. 397466d bpo-30953: Improve error messages and add tests for jumping (GH-6196) by Serhiy Storchaka · 7 years ago
  19. 702f8f3 bpo-33041: Rework compiling an "async for" loop. (#6142) by Serhiy Storchaka · 7 years ago
  20. b8e9d6c bpo-17288: Prevent jumps from 'return' and 'exception' trace events. (GH-6107) by xdegaye · 7 years ago
  21. 26c9f56 bpo-33026: Fix jumping out of "with" block by setting f_lineno. (#6026) by Serhiy Storchaka · 7 years ago
  22. 7023644 closes bpo-32980 Remove _PyFrame_Init (GH-5965) by Thomas Nyberg · 7 years ago
  23. 520b7ae bpo-17611. Move unwinding of stack for "pseudo exceptions" from interpreter to compiler. (GH-5006) by Serhiy Storchaka · 7 years ago
  24. a4d0001 bpo-32690: Preserve order of locals() (#5379) by Raymond Hettinger · 7 years ago
  25. 1470914 bpo-32468: Better frame repr() (#5067) by Antoine Pitrou · 7 years ago
  26. ae3087c Move exc state to generator. Fixes bpo-25612 (#1773) by Mark Shannon · 7 years ago
  27. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  28. 5a85167 bpo-31344: Per-frame control of trace events (GH-3417) by Nick Coghlan · 7 years ago
  29. 5a625d0 Issue #29049: Call _PyObject_GC_TRACK() lazily when calling Python function. by INADA Naoki · 8 years ago
  30. c6944e7 Issue #28618: Make hot functions using __attribute__((hot)) by Victor Stinner · 8 years ago
  31. ab87400 Issue #27129: Replaced wordcode related magic constants with macros. by Serhiy Storchaka · 8 years ago
  32. 64c26e5 Issue #20041: Fixed TypeError when frame.f_trace is set to None. by Serhiy Storchaka · 8 years ago
  33. 64a263a Issue #20041: Fixed TypeError when frame.f_trace is set to None. by Serhiy Storchaka · 8 years ago
  34. b0f80b0 Issue #26647: Python interpreter now uses 16-bit wordcode instead of bytecode. by Serhiy Storchaka · 8 years ago
  35. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  36. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  37. f3914eb co_lnotab supports negative line number delta by Victor Stinner · 9 years ago
  38. 576f132 Issue #20440: Cleaning up the code by using Py_SETREF. by Serhiy Storchaka · 9 years ago
  39. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  40. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  41. acc8cf2 Issue #21897: Fix a crash with the f_locals attribute with closure variables when frame.clear() has been called. by Antoine Pitrou · 10 years ago
  42. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 11 years ago
  43. 07e9e38 frameobject.c: Use an identifer instead of creating explicitly an interned by Victor Stinner · 11 years ago
  44. 41bb43a Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle by Victor Stinner · 11 years ago
  45. 58720d6 Issue #17934: Add a clear() method to frame objects, to help clean up expensive details (local variables) and break reference cycles. by Antoine Pitrou · 11 years ago
  46. 640c35c Reuse Py_MIN and Py_MAX macros: remove duplicate MIN/MAX macros by Victor Stinner · 11 years ago
  47. 9396356 Backout c89febab4648 following private feedback by Guido. by Antoine Pitrou · 11 years ago
  48. 04e70d1 Issue #17807: Generators can now be finalized even when they are part of a reference cycle. by Antoine Pitrou · 11 years ago
  49. 7a6d7cf Issue #9566: Use the right type to fix a compiler warnings on Win64 by Victor Stinner · 12 years ago
  50. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  51. 85634d7 Issue #14909: A number of places were using PyMem_Realloc() apis and by Kristjan Valur Jonsson · 12 years ago
  52. b0b2242 Issue #14385: Support other types than dict for __builtins__ by Victor Stinner · 12 years ago
  53. 6e3358a merge 3.2 (#14612) by Benjamin Peterson · 12 years ago
  54. e42fb30 SETUP_WITH acts like SETUP_FINALLY for the purposes of setting f_lineno (closes #14612) by Benjamin Peterson · 12 years ago
  55. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 13 years ago
  56. 400a968 remove f_yieldfrom access from Python (closes #13970) by Benjamin Peterson · 13 years ago
  57. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 13 years ago
  58. d19052c Issue #9089: Remove references to intobject.c and intobject.h from comments. by Mark Dickinson · 14 years ago
  59. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  60. 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
  61. b7ffad5 Merged revisions 73129 via svnmerge from by Antoine Pitrou · 15 years ago
  62. 24e581f Merged revisions 73114 via svnmerge from by Amaury Forgeot d'Arc · 15 years ago
  63. 4db6ff6 Merged revisions 72776,72796 via svnmerge from by Jeffrey Yasskin · 15 years ago
  64. ae937c0 Merged revisions 71722 via svnmerge from by Benjamin Peterson · 15 years ago
  65. e94c679 Issue #1717: rename tp_compare to tp_reserved. I'll change the by Mark Dickinson · 16 years ago
  66. fefeca5 Merged revisions 66739 via svnmerge from by Christian Heimes · 16 years ago
  67. 3dbca81 Merged revisions 65012,65035,65037-65040,65048,65057,65077,65091-65095,65097-65099,65127-65128,65131,65133-65136,65139,65149-65151,65155,65158-65159,65176-65178,65183-65184,65187-65190,65192,65194 via svnmerge from by Georg Brandl · 16 years ago
  68. fbe94c5 Merged revisions 64842,64853,64856,64945 via svnmerge from by Robert Schuppenies · 16 years ago
  69. eec3d71 #3021: Antoine Pitrou's Lexical exception handlers by Benjamin Peterson · 16 years ago
  70. 72b710a Renamed PyString to PyBytes by Christian Heimes · 16 years ago
  71. a156e09 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60569,60571-60572,60574,60576-60583,60585-60586,60589,60591,60594-60595,60597-60598,60600-60601,60606-60612,60615,60617,60619-60621,60623-60625,60627-60629,60631,60633,60635,60647,60650,60652,60654,60656,60658-60659,60664-60666,60668-60670,60672,60676,60678,60680-60683,60685-60686,60688,60690,60692-60694,60697-60700,60705-60706,60708,60711,60714,60720,60724-60730,60732,60736,60742,60744,60746,60748,60750-60751,60753,60756-60757,60759-60761,60763-60764,60766,60769-60770,60774-60784,60787-60845 via svnmerge from by Christian Heimes · 17 years ago
  72. 2202f87 Merged revisions 60481,60485,60489-60492,60494-60496,60498-60499,60501-60503,60505-60506,60508-60509,60523-60524,60532,60543,60545,60547-60548,60552,60554,60556-60559,60561-60562,60568-60598,60600-60616 via svnmerge from by Christian Heimes · 17 years ago
  73. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 17 years ago
  74. d1a1d1e Remove PyInt_CheckExact. Add PyLong_AsLongAndOverflow. by Martin v. Löwis · 17 years ago
  75. 217cfd1 Cleanup: Replaced most PyInt_ aliases with PyLong_ and disabled the aliases in intobject.h by Christian Heimes · 17 years ago
  76. bed6784 Get rid of more uses of string and use unicode by Neal Norwitz · 17 years ago
  77. 33d2689 Merged revisions 56492-56752 via svnmerge from by Guido van Rossum · 17 years ago
  78. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  79. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  80. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  81. d8faa36 Merged revisions 53952-54987 via svnmerge from by Guido van Rossum · 17 years ago
  82. ddefaf3 Merged the int/long unification branch, by very crude means (sorry Thomas!). by Guido van Rossum · 18 years ago
  83. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  84. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  85. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  86. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 19 years ago
  87. ec97a28 Fix a bunch of imports to use code.h instead of compile.h. by Jeremy Hylton · 19 years ago
  88. 3e0055f Merge ast-branch to head by Jeremy Hylton · 19 years ago
  89. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  90. 75be012 memset() with small memory sizes just kill us. by Armin Rigo · 21 years ago
  91. 76beca9 Two forgotten Py_DECREF() for two out-of-memory conditions. by Armin Rigo · 21 years ago
  92. e4b9d8c Removing bogus Py_DECREF() reported by Armin Rigo (SF bug 812353). by Jeremy Hylton · 21 years ago
  93. 174d276 Fix indentation. by Jeremy Hylton · 21 years ago
  94. bdc6ea1 Fix silly typo in comment. by Michael W. Hudson · 21 years ago
  95. bd5cbf8 Refactor the logic for setting f_builtins. by Jeremy Hylton · 22 years ago
  96. b2501f4 Since the *_Init() are private, prefix with _, suggested by Skip by Neal Norwitz · 22 years ago
  97. c91ed40 SF #561244, Micro optimizations by Neal Norwitz · 22 years ago
  98. ee65e22 Fix bug introduced by SF patch #643835, Set Next Statement for Python debuggers by Neal Norwitz · 22 years ago
  99. 91787cb Undefine MIN and MAX before defining by Neal Norwitz · 22 years ago
  100. cfd3884 This is Richie Hindle's patch by Michael W. Hudson · 22 years ago