1. 3da8206 fix indentation of comment by Benjamin Peterson · 8 years ago
  2. fdeb6ec Issue #14432: Remove the thread state field from the frame structure. Fix a by Victor Stinner · 10 years ago
  3. 41bb43a Issue #18408: Add a new PyFrame_FastToLocalsWithError() function to handle by Victor Stinner · 11 years ago
  4. 236a547 Issue #18665: fix typos. Patch by Vajrasky Kok. by Antoine Pitrou · 11 years ago
  5. 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
  6. 9396356 Backout c89febab4648 following private feedback by Guido. by Antoine Pitrou · 11 years ago
  7. 04e70d1 Issue #17807: Generators can now be finalized even when they are part of a reference cycle. by Antoine Pitrou · 11 years ago
  8. c37cfd6 Update comment: SAVE_EXC_STATE and SWAP_EXC_STATE macroses are saave_exc_state and swap_exc_state functions now. by Andrew Svetlov · 11 years ago
  9. 49526f4 Issue #14785: Add sys._debugmallocstats() to help debug low-level memory allocation issues by David Malcolm · 12 years ago
  10. 2afe6ae perform yield from delegation by repeating YIELD_FROM opcode (closes #14230) by Benjamin Peterson · 12 years ago
  11. 1f7ce62 Implement PEP 380 - 'yield from' (closes #11682) by Nick Coghlan · 12 years ago
  12. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 13 years ago
  13. 7b82b40 Merged revisions 72487-72488,72879 via svnmerge from by Alexandre Vassalotti · 15 years ago
  14. eec3d71 #3021: Antoine Pitrou's Lexical exception handlers by Benjamin Peterson · 16 years ago
  15. 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 · 16 years ago
  16. 90aa764 #1629: Renamed Py_Size, Py_Type and Py_Refcnt to Py_SIZE, Py_TYPE and Py_REFCNT. by Christian Heimes · 16 years ago
  17. 9f2e346 Merged revisions 56467-56482 via svnmerge from by Martin v. Löwis · 17 years ago
  18. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  19. 0e3f591 Merged revisions 46753-51188 via svnmerge from by Thomas Wouters · 18 years ago
  20. 477c8d5 Much-needed merge (using svnmerge.py this time) of trunk changes into p3yk. by Thomas Wouters · 18 years ago
  21. 214b1c3 SF Bug #215126: Over restricted type checking on eval() function by Raymond Hettinger · 20 years ago
  22. 02ff6a9 A slight change to SET_LINENO-less tracing. by Michael W. Hudson · 22 years ago
  23. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  24. a81d220 SF patch # 580411, move frame macros from frameobject.h into ceval.c by Neal Norwitz · 22 years ago
  25. 251ead8 Make frames a PyVarObject instead of a PyObject. by Neil Schemenauer · 23 years ago
  26. 8c96369 PyFrameObject: rename f_stackbottom to f_stacktop, since it points to by Tim Peters · 23 years ago
  27. 5ca576e Merging the gen-branch into the main line, at Guido's direction. Yay! by Tim Peters · 23 years ago
  28. 30c9f39 Variety of small INC/DECREF patches that fix reported memory leaks by Jeremy Hylton · 23 years ago
  29. 2b724da Remove f_closure slot of frameobject and use f_localsplus instead. by Jeremy Hylton · 23 years ago
  30. 64949cb PEP 227 implementation by Jeremy Hylton · 23 years ago
  31. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  32. ea9cb5a ANSI-fication and Py_PROTO extermination. by Fred Drake · 24 years ago
  33. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  34. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  35. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 25 years ago
  36. a027efa Massive changes for separate thread state management. by Guido van Rossum · 27 years ago
  37. cdf578e New lay-out of frame object, for fewer mallocs. by Guido van Rossum · 27 years ago
  38. 408027e Rename DEBUG macro to Py_DEBUG by Guido van Rossum · 27 years ago
  39. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  40. e1cd6c1 don't use NDEBUG by Guido van Rossum · 28 years ago
  41. 884afd6 keyword arguments and faster function calls by Guido van Rossum · 29 years ago
  42. 051ab12 make the type a parameter of the DL_IMPORT macro, for Borland C by Guido van Rossum · 29 years ago
  43. 9381782 new names for lots of new functions by Guido van Rossum · 29 years ago
  44. caa6380 The great renaming, phase two: all header files have been updated to by Guido van Rossum · 29 years ago
  45. 6135a87 __builtins__ mods (and sys_checkinterval for ceval.c) by Guido van Rossum · 29 years ago
  46. 5799b52 Added 1995 copyright. by Guido van Rossum · 29 years ago
  47. e89bc75 Changes for dynamic linking under NT by Guido van Rossum · 30 years ago
  48. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  49. a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
  50. eb6b33a * classobject.c: in instance_getattr, don't make a method out of a by Guido van Rossum · 31 years ago
  51. 81daa32 Access checks now work, at least for instance data (not for methods by Guido van Rossum · 31 years ago
  52. 8b17d6b Changes to speed up local variables enormously, by avoiding dictionary by Guido van Rossum · 31 years ago
  53. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago
  54. a9e7dc1 * bltinmodule.c: added built-in function cmp(a, b) by Guido van Rossum · 32 years ago
  55. 5113f5f Copyright for 1992 added by Guido van Rossum · 32 years ago
  56. 088bc2a Added f_lasti and f_lineno members. by Guido van Rossum · 32 years ago
  57. d594c91 Added Getnamev() macro. by Guido van Rossum · 33 years ago
  58. f70e43a Added copyright notice. by Guido van Rossum · 33 years ago
  59. 3f5da24 "Compiling" version by Guido van Rossum · 33 years ago