1. fa7ab6a bpo-40826: Add _PyOS_InterruptOccurred(tstate) function (GH-20599) by Victor Stinner · 4 years, 2 months ago
  2. c353764 bpo-40826: Fix GIL usage in PyOS_Readline() (GH-20579) by Victor Stinner · 4 years, 2 months ago
  3. 62183b8 bpo-40268: Remove explicit pythread.h includes (#19529) by Victor Stinner · 4 years, 4 months ago
  4. e5014be bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) by Victor Stinner · 4 years, 4 months ago
  5. 4c49da0 bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-11015) by Zackery Spytz · 6 years ago
  6. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 6 years ago
  7. 50b4857 bpo-35081: Add _PyThreadState_GET() internal macro (GH-10266) by Victor Stinner · 6 years ago
  8. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 6 years ago
  9. ce75df3 bpo-30237: Output error when ReadConsole is canceled by CancelSynchronousIo. (GH-7911) by ValeriyaSinevich · 6 years ago
  10. 9b9d58f bpo-31546: Fix input hook integration (GH-7978) by Thomas A Caswell · 6 years ago
  11. 0a37a30 closes bpo-32460: ensure all non-static globals have initializers (#5061) by Benjamin Peterson · 7 years ago
  12. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 7 years ago
  13. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 7 years ago
  14. 6c2b9d3 Issue #28333: Fixes off-by-one error that was adding an extra space. by Steve Dower · 8 years ago
  15. 59bd34f Issue #28333: Remove unnecessary increment. by Steve Dower · 8 years ago
  16. 3cd187b Issue #28333: Enables Unicode for ps1/ps2 and input() prompts. (Patch by Eryk Sun) by Steve Dower · 8 years ago
  17. e2e792d merge 3.5 (#28184) by Benjamin Peterson · 8 years ago
  18. 3929499 Issue #1602: Windows console doesn't input or print Unicode (PEP 528) by Steve Dower · 8 years ago
  19. 940f33a Issue #23524: Finish removing _PyVerify_fd from sources by Steve Dower · 8 years ago
  20. af01f66 Issue #16136: Remove VMS support and VMS-related code by Christian Heimes · 11 years ago
  21. c679227 Issue #1772673: The type of `char*` arguments now changed to `const char*`. by Serhiy Storchaka · 11 years ago
  22. c548660 Issue #16742: My fix on PyOS_StdioReadline() was incomplete, PyMem_FREE() was by Victor Stinner · 11 years ago
  23. 2fe9bac Close #16742: Fix misuse of memory allocations in PyOS_Readline() by Victor Stinner · 11 years ago
  24. 73207e0 Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. by Christian Heimes · 11 years ago
  25. 9ae513c Issue #18368: PyOS_StdioReadline() no longer leaks memory when realloc() fails. by Christian Heimes · 11 years ago
  26. b26a9b1 Replace WaitForSingleObject with WaitForSingleObjectEx, by Martin v. Löwis · 12 years ago
  27. 9175c3d Issue #1677: Handle better a race condition between the interactive interpreter and by Tim Golden · 12 years ago
  28. e654c11 Issue #14433: Prevent msvcrt crash in interactive prompt when stdin is closed. by Martin v. Löwis · 12 years ago
  29. c345ce1 Issue #10350: Read and save errno before calling a function which might overwrite it. by Antoine Pitrou · 13 years ago
  30. 4f71101 Issue #12016: my_fgets() now always clears errors before calling fgets(). Fix by Victor Stinner · 13 years ago
  31. db93278 Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, clear by Victor Stinner · 13 years ago
  32. 4755ab0 Issue #1195: Fix input() if it is interrupted by CTRL+d and then CTRL+c, by Victor Stinner · 13 years ago
  33. a870e35 (Merge 3.1) Issue #11650: PyOS_StdioReadline() retries fgets() if it was by Victor Stinner · 13 years ago
  34. 52c950f Issue #11650: PyOS_StdioReadline() retries fgets() if it was interrupted by Victor Stinner · 13 years ago
  35. 7f14f0d Recorded merge of revisions 81032 via svnmerge from by Antoine Pitrou · 14 years ago
  36. f95a1b3 Recorded merge of revisions 81029 via svnmerge from by Antoine Pitrou · 14 years ago
  37. 21896a3 Merged revisions 77952,78030,78102,78104,78107,78206,78216,78296-78297,78328,78331-78332,78336,78339,78343,78378-78379,78415,78559,78717,78791 via svnmerge from by Benjamin Peterson · 14 years ago
  38. 7a98be2 Remove RISCOS support by Skip Montanaro · 17 years ago
  39. 49fd7fa Merge p3yk branch with the trunk up to revision 45595. This breaks a fair by Thomas Wouters · 18 years ago
  40. e3afc59 In a threads-disabled build, typing Ctrl-C into a raw_input() crashed, by Michael W. Hudson · 19 years ago
  41. 2384990 PyThreadState_Swap(NULL) didn't do what I thought it did. Fixes by Michael W. Hudson · 20 years ago
  42. b7e898a "#if WITH_THREAD" is incorrect; must be #ifdef instead; WITH_THREAD by Tim Peters · 20 years ago
  43. 30ea2f2 This closes patch: by Michael W. Hudson · 20 years ago
  44. fb27656 Getting rid of support for the ancient Apple MPW compiler. by Jack Jansen · 21 years ago
  45. c16f3bd Patch #708495: Port more stuff to OpenVMS. by Martin v. Löwis · 21 years ago
  46. 566f6af Patch #512981: Update readline input stream on sys.stdin/out change. by Martin v. Löwis · 22 years ago
  47. 2f10cb8 Fix bug 439992 - [win32] KeyboardInterrupt Not Caught. by Mark Hammond · 22 years ago
  48. 48a680c RISCOS changes by dschwertberger. by Guido van Rossum · 23 years ago
  49. d5fadf7 Rationalize use of limits.h, moving the inclusion to Python.h. by Fred Drake · 24 years ago
  50. 8586991 REMOVED all CWI, CNRI and BeOpen copyright markings. by Guido van Rossum · 24 years ago
  51. 23c9e00 Mass ANSIfication. by Thomas Wouters · 24 years ago
  52. dbd9ba6 Nuke all remaining occurrences of Py_PROTO and Py_FPROTO. by Tim Peters · 24 years ago
  53. 41aa8e5 Include limits.h if we have it. by Jack Jansen · 24 years ago
  54. ffcc381 Change copyright notice - 2nd try. by Guido van Rossum · 24 years ago
  55. fd71b9e Change copyright notice. by Guido van Rossum · 24 years ago
  56. 6da3434 Trent Mick: familiar simple Win64 patches by Guido van Rossum · 24 years ago
  57. b18618d Vladimir Marangozov's long-awaited malloc restructuring. by Guido van Rossum · 24 years ago
  58. 80c7bcf The previous fix was still broken; the Py_END_ALLOW_THREADS macro was by Guido van Rossum · 26 years ago
  59. 8efa47b We now assume that PyOS_Readline() is called with the interpreter lock by Guido van Rossum · 26 years ago
  60. 4462064 Renamed Py_input_hook to PyOS_InputHook. by Guido van Rossum · 27 years ago
  61. 717c6f9 Move GNU readline interface to ../Modules/readline.c. by Guido van Rossum · 27 years ago
  62. fa658ce Remove two unised variables. by Guido van Rossum · 27 years ago
  63. fbd64c8 Restructured quite a bit, hopefully Lee Busby will find this useful. by Guido van Rossum · 27 years ago
  64. fd8a393 Make gcc -Wall happy by Guido van Rossum · 28 years ago
  65. d266eb4 New permission notice, includes CNRI. by Guido van Rossum · 28 years ago
  66. 0bc253d Explicitly call rl_initialize(). by Guido van Rossum · 28 years ago
  67. 7cf1fcf Always include config.h by Guido van Rossum · 28 years ago
  68. 9ea917e Only define PyOS_ReadlineInit if WITH_READLINE defined. by Guido van Rossum · 28 years ago
  69. adf8769 Separate readline initialization into new function PyOS_ReadlineInit(). by Guido van Rossum · 28 years ago
  70. c7fea2f add sigrelse() call for SunOS 4.1; add some fflush() calls by Guido van Rossum · 29 years ago
  71. b9f8d6e Added 1995 to copyright message. by Guido van Rossum · 30 years ago
  72. b6775db Merge alpha100 branch back to main trunk by Guido van Rossum · 30 years ago
  73. 6fa6343 None by Guido van Rossum · 31 years ago