1. 09532fe bpo-36710: Add 'ceval' local variable to ceval.c (GH-12934) by Victor Stinner · 5 years ago
  2. 99fcc61 Revert "bpo-36356: Destroy the GIL at exit (GH-12453)" (GH613006) by Victor Stinner · 5 years ago
  3. b36e5d6 bpo-36356: Destroy the GIL at exit (GH-12453) by Victor Stinner · 5 years ago
  4. b75b1a35 bpo-33608: Revert "Factor out a private, per-interpreter _Py_AddPendingCall()." (gh-12806) by Eric Snow · 5 years ago
  5. f13c5c8 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (gh-12360) by Eric Snow · 5 years ago
  6. 4d61e6e Revert: bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) (GH-12159) by Victor Stinner · 5 years ago
  7. ef4ac96 bpo-33608: Factor out a private, per-interpreter _Py_AddPendingCall(). (GH-11617) by Eric Snow · 5 years ago
  8. bb86bf4 bpo-35444: Unify and optimize the helper for getting a builtin object. (GH-11047) by Serhiy Storchaka · 6 years ago
  9. fc2f407 bpo-32591: Add native coroutine origin tracking (#5250) by Nathaniel J. Smith · 7 years ago
  10. 1896793 bpo-31857: Make the behavior of USE_STACKCHECK deterministic (#4098) by pdox · 7 years ago
  11. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  12. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  13. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 7 years ago
  14. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 7 years ago
  15. c08177a bpo-30703: Improve signal delivery (#2415) by Antoine Pitrou · 7 years ago
  16. 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 7 years ago
  17. d4edfc9 bpo-29935: Fixed error messages in the index() method of tuple, list and deque (#887) by Serhiy Storchaka · 7 years ago
  18. 80ec836 bpo-29748: Added the slice index converter in Argument Clinic. (#549) by Serhiy Storchaka · 7 years ago
  19. aa289a5 bpo-29548: Recommend PyObject_Call APIs over PyEval_Call APIs. (GH-75) by INADA Naoki · 7 years ago
  20. 2d0eb65 Uniformize argument names of "call" functions by Victor Stinner · 8 years ago
  21. 8be1c39 Backed out changeset 7efddbf1aa70 by Victor Stinner · 8 years ago
  22. ebea998 Uniformize argument names of "call" functions by Victor Stinner · 8 years ago
  23. 048afd9 Remove CALL_PROFILE special build by Victor Stinner · 8 years ago
  24. 460bd0d Issue #19569: Compiler warnings are now emitted if use most of deprecated by Serhiy Storchaka · 8 years ago
  25. 9fab79b Issue #26900: Excluded underscored names and other private API from limited API. by Serhiy Storchaka · 8 years ago
  26. eb63645 Issue #28003: Implement PEP 525 -- Asynchronous Generators. by Yury Selivanov · 8 years ago
  27. 5c4de28 Add the co_extra field and accompanying APIs to code objects. by Brett Cannon · 8 years ago
  28. 3cebf93 Implement the frame evaluation API aspect of PEP 523. by Brett Cannon · 8 years ago
  29. 8a31c82 Fix PyObject_Call() parameter names by Victor Stinner · 8 years ago
  30. a78c795 Issue 25483: Add an opcode to make f-string formatting more robust. by Eric V. Smith · 9 years ago
  31. 50856d5 sys.setrecursionlimit() now raises RecursionError by Victor Stinner · 9 years ago
  32. f488fb4 Issue #19235: Add new RecursionError exception. Patch by Georg Brandl. by Yury Selivanov · 9 years ago
  33. 289dd19 Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 9 years ago
  34. 5fa22fc Added the const qualifier for char* argument of Py_EnterRecursiveCall(). by Serhiy Storchaka · 9 years ago
  35. eb698fe Issue 24342: No need to use PyAPI_FUNC for _PyEval_ApplyCoroutineWrapper by Yury Selivanov · 9 years ago
  36. aab3c4a Issue 24342: Let wrapper set by sys.set_coroutine_wrapper fail gracefully by Yury Selivanov · 9 years ago
  37. d8cf382 Issue 24017: Make PyEval_(Set|Get)CoroutineWrapper private by Yury Selivanov · 9 years ago
  38. f487a00 Fix warnings for PyEval_GetCoroutineWrapper by Yury Selivanov · 9 years ago
  39. 7544508 PEP 0492 -- Coroutines with async and await syntax. Issue #24017. by Yury Selivanov · 9 years ago
  40. 4d0d471 Merge branches/pep-0384. by Martin v. Löwis · 14 years ago
  41. 1df1536 Issue #9828: Destroy the GIL in Py_Finalize(), so that it gets properly by Antoine Pitrou · 14 years ago
  42. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  43. 8689a10 Merged revisions 79555 via svnmerge from by Antoine Pitrou · 14 years ago
  44. 074e5ed Merge in the new GIL. by Antoine Pitrou · 15 years ago
  45. 652e707 Issue #5392: when a very low recursion limit was set, the interpreter would by Antoine Pitrou · 15 years ago
  46. 658fad8 Issue #3697: "Fatal Python error: Cannot recover from stack overflow" by Antoine Pitrou · 16 years ago
  47. 2067bfd Rename thread to _thread and dummy_thread to _dummy_thread. Issue #2875. by Georg Brandl · 16 years ago
  48. 4513ef8 Bug #1595: Remove extra semicolon. by Martin v. Löwis · 16 years ago
  49. 5b22213 Make identifiers str (not str8) objects throughout. by Martin v. Löwis · 17 years ago
  50. a8add0e Merged revisions 55270-55324 via svnmerge from by Guido van Rossum · 17 years ago
  51. 79139b2 Kill off softspace completely (except in formatter.py which seems to have by Guido van Rossum · 17 years ago
  52. 18e1655 Merge ssize_t branch. by Martin v. Löwis · 18 years ago
  53. af68c87 Add const to several API functions that take char *. by Jeremy Hylton · 19 years ago
  54. 0d6615f PEP 342 implementation. Per Guido's comments, the generator throw() by Phillip J. Eby · 19 years ago
  55. 7f468f2 SF patch 1044089: New C API function PyEval_ThreadsInitialized(), by Nick by Tim Peters · 20 years ago
  56. 8d97e33 Patch #966493: Cleanup generator/eval_frame exposure. by Martin v. Löwis · 20 years ago
  57. e440e47 Patch #957398: Add public API for Generator Object/Type. by Martin v. Löwis · 20 years ago
  58. 2b3eb40 Deleting cyclic object comparison. by Armin Rigo · 21 years ago
  59. 2aec8b7 As far as I can tell PyEval_GetOwner was removed in 1997 (when it was by Michael W. Hudson · 21 years ago
  60. 6297a7a - PyEval_GetFrame() is now declared to return a PyFrameObject * by Guido van Rossum · 21 years ago
  61. 985eba5 Small function call optimization and special build option for call stats. by Jeremy Hylton · 21 years ago
  62. d581d77 replace thread state objects' ticker and checkinterval fields with two by Skip Montanaro · 22 years ago
  63. 91a681d Excise DL_EXPORT from Include. by Mark Hammond · 22 years ago
  64. 6d6c1a3 Merge of descr-branch back into trunk. by Tim Peters · 23 years ago
  65. 5ba5866 Part way to allowing "from __future__ import generators" to communicate by Tim Peters · 23 years ago
  66. 55fb6e0 Revise the interface to the profiling and tracing support for the by Fred Drake · 23 years ago
  67. 061d106 If a code object is compiled with nested scopes, define the CO_NESTED flag. by Jeremy Hylton · 23 years ago
  68. 682c25a RET_SAVE references should be Py_BLOCK_THREADS references by Skip Montanaro · 24 years ago
  69. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  70. 51de690 Supply missing prototypes for new Py_{Get,Set}RecursionLimit; fixes compiler wngs; by Tim Peters · 24 years ago
  71. 8ebe84d The new PyEval_ReInitThreads wasn't declared in ceval.h; compiler wngs. by Tim Peters · 24 years ago
  72. 334fb89 Use 'void' directly instead of the ANY #define, now that all code is ANSI C. by Thomas Wouters · 24 years ago
  73. 5f37591 ANSIfications: fix empty arglists, and remove the checks for by Thomas Wouters · 24 years ago
  74. 5eb6d4e ANSI-fication and Py_PROTO extermination. 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. 7c36ada Trent Mick: by Guido van Rossum · 24 years ago
  78. 8368453 Add DLL level b/w compat for PySequence_In and PyEval_CallObject by Guido van Rossum · 25 years ago
  79. 43466ec Add DL_IMPORT(returntype) for all officially exported functions. by Guido van Rossum · 26 years ago
  80. 3d109a0 Add missing prototypes for PyEval_CallFunction() and PyEval_CallMethod(). by Guido van Rossum · 26 years ago
  81. d7ed683 Inline PyObject_CallObject (Marc-Andre Lemburg). by Guido van Rossum · 27 years ago
  82. 29e46a9 Mass checkin (more to follow for other directories). by Guido van Rossum · 27 years ago
  83. a847889 Moved PyEval_InitThreads to inside WITH_THREAD, where it belongs. by Guido van Rossum · 27 years ago
  84. 2fca21f7 PyEval_SaveThread() and PyEval_RestoreThread() now return/take a by Guido van Rossum · 27 years ago
  85. 745b8cf flushline and writestring can now return an error by Guido van Rossum · 27 years ago
  86. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  87. 884afd6 keyword arguments and faster function calls by Guido van Rossum · 29 years ago
  88. caa6380 The great renaming, phase two: all header files have been updated to by Guido van Rossum · 30 years ago
  89. 6135a87 __builtins__ mods (and sys_checkinterval for ceval.c) by Guido van Rossum · 30 years ago
  90. 5799b52 Added 1995 copyright. by Guido van Rossum · 30 years ago
  91. 66cb311 Lots of small things, see ChangeLog by Guido van Rossum · 30 years ago
  92. c5d92e1 ceval.h: added Py_MakePendingCalls() by Guido van Rossum · 30 years ago
  93. 9566408 pythonrun.h: added run_pyc_file by Guido van Rossum · 30 years ago
  94. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  95. b73cc04 * ceval.c, longobject.c, methodobject.c, listnode.c, arraymodule.c, by Guido van Rossum · 31 years ago
  96. a330996 * Added support for X11 modules. by Guido van Rossum · 31 years ago
  97. eb6b33a * classobject.c: in instance_getattr, don't make a method out of a by Guido van Rossum · 31 years ago
  98. 81daa32 Access checks now work, at least for instance data (not for methods by Guido van Rossum · 31 years ago
  99. 8b17d6b Changes to speed up local variables enormously, by avoiding dictionary by Guido van Rossum · 31 years ago
  100. 9bfef44 * Changed all copyright messages to include 1993. by Guido van Rossum · 31 years ago