1. ada319b bpo-32388: Remove cross-version binary compatibility requirement in tp_flags (GH-4944) by Antoine Pitrou · 6 years ago
  2. bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 7 years ago
  3. 621cebe bpo-35081: Rename internal headers (GH-10275) by Victor Stinner · 7 years ago
  4. 27e2d1f bpo-35081: Add pycore_ prefix to internal header files (GH-10263) by Victor Stinner · 7 years ago
  5. 0353b4e bpo-33138: Change standard error message for non-pickleable and non-copyable types. (GH-6239) by Serhiy Storchaka · 7 years ago
  6. fc512e3 bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582) by jdemeyer · 7 years ago
  7. 059f58c bpo-32228: Reset raw_pos after unwinding the raw stream (#4858) by Nitish Chandra · 8 years ago
  8. f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 8 years ago
  9. 4d9aec0 bpo-31572: Get rid of PyObject_HasAttr() and _PyObject_HasAttrId() in the _io module. (#3726) by Serhiy Storchaka · 8 years ago
  10. 317def9 bpo-17852: Revert incorrect fix based on misunderstanding of _Py_PyAtExit() semantics (#4826) by Antoine Pitrou · 8 years ago
  11. 9703f09 bpo-31976: Fix race condition when flushing a file is slow. (#4331) by benfogle · 8 years ago
  12. 0a1ff24 bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#3372) by Neil Schemenauer · 8 years ago
  13. 2ebc5ce bpo-30860: Consolidate stateful runtime globals. (#3397) by Eric Snow · 8 years ago
  14. a6a4dc8 bpo-31370: Remove support for threads-less builds (#3385) by Antoine Pitrou · 8 years ago
  15. 05351c1 Revert "bpo-30860: Consolidate stateful runtime globals." (#3379) by Eric Snow · 8 years ago
  16. 76d5abc bpo-30860: Consolidate stateful runtime globals. (#2594) by Eric Snow · 8 years ago
  17. db56423 Revert "bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#1908)" (#3337) by Neil Schemenauer · 8 years ago
  18. e38d12e bpo-17852: Maintain a list of BufferedWriter objects. Flush them on exit. (#1908) by Neil Schemenauer · 8 years ago
  19. 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 8 years ago
  20. 762bf40 bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) by Serhiy Storchaka · 8 years ago
  21. aefa7eb bpo-6532: Make the thread id an unsigned integer. (#781) by Serhiy Storchaka · 8 years ago
  22. fff9a31 bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. (#748) by Serhiy Storchaka · 8 years ago
  23. a5af6e1 bpo-25455: Fixed crashes in repr of recursive buffered file-like objects. (#514) by Serhiy Storchaka · 8 years ago
  24. 228b12e Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever by Serhiy Storchaka · 9 years ago
  25. 61bdb0d Use _PyObject_CallMethodIdObjArgs() in _io by Victor Stinner · 9 years ago
  26. 85b0f5b Added the const qualifier to char* variables that refer to readonly internal by Serhiy Storchaka · 9 years ago
  27. ccb2c0e Issue #23214: Implement optional BufferedReader, BytesIO read1() argument by Martin Panter · 9 years ago
  28. c249221 Issue #20699: Merge io bytes-like fixes from 3.5 by Martin Panter · 9 years ago
  29. 6bb91f3 Issue #20699: Document that “io” methods accept bytes-like objects by Martin Panter · 9 years ago
  30. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  31. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 9 years ago
  32. 047f3b7 Issue #22854: Merge UnsupportedOperation fixes from 3.5 by Martin Panter · 9 years ago
  33. 754aab2 Issue #22854: Clarify documentation about UnsupportedOperation and add tests by Martin Panter · 9 years ago
  34. bdb908e Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 10 years ago
  35. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 10 years ago
  36. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 10 years ago
  37. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 10 years ago
  38. 6baa0f9 Fixes cast warning in bufferedio.c by Steve Dower · 10 years ago
  39. d10d6ae Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 10 years ago
  40. dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 10 years ago
  41. f24131f Issue #20175: Converted the _io module to Argument Clinic. by Serhiy Storchaka · 10 years ago
  42. cb46f0e Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 10 years ago
  43. 25f85d4 Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 10 years ago
  44. 8be6be4 Issue #21802: The reader in BufferedRWPair now is closed even when closing by Serhiy Storchaka · 10 years ago
  45. 7665be6 Issue #21802: The reader in BufferedRWPair now is closed even when closing by Serhiy Storchaka · 10 years ago
  46. 009b811 Removed unintentional trailing spaces in non-external and non-generated C files. by Serhiy Storchaka · 10 years ago
  47. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 10 years ago
  48. 98beb75 merge 3.4 (#23093) by Benjamin Peterson · 11 years ago
  49. 10e76b6 allow more operations to work on detached streams (closes #23093) by Benjamin Peterson · 11 years ago
  50. 78184af Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 11 years ago
  51. e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 11 years ago
  52. 58ee2d3 merge 3.4 (#22517) by Benjamin Peterson · 11 years ago
  53. c44eb73 merge 3.3 (#22517) by Benjamin Peterson · 11 years ago
  54. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 11 years ago
  55. a96fea0 add BufferedIOBase.readinto1 (closes #20578) by Benjamin Peterson · 11 years ago
  56. 76d3f14 PyErr_NormalizeException doesn't like being called with an exception set by Serhiy Storchaka · 11 years ago
  57. 8a8f7f9 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 11 years ago
  58. 5bdfc51 Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. by Serhiy Storchaka · 12 years ago
  59. 61e2493 Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. by Serhiy Storchaka · 12 years ago
  60. 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 12 years ago
  61. 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 12 years ago
  62. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 12 years ago
  63. ace47d7 Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail by Victor Stinner · 12 years ago
  64. 9ba6962 Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 12 years ago
  65. 9ad51ec Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 12 years ago
  66. 37a79a1 Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw by Serhiy Storchaka · 12 years ago
  67. 281945f Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw by Serhiy Storchaka · 12 years ago
  68. d7c59e1 Merge #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 12 years ago
  69. 9f10f56 Merge #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 12 years ago
  70. 67bfe80 #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 12 years ago
  71. 4c05969 merge 3.3 (#16597) by Benjamin Peterson · 13 years ago
  72. 6862361 call close on the underlying stream even if flush raises (closes #16597) by Benjamin Peterson · 13 years ago
  73. dc46945 Closes #15488: Closed files keep their buffer alive by Jesus Cea · 13 years ago
  74. 8f734eb Fixed reference leak in error branch of _bufferedreader_read_all(). The variable data can contain a bytes object but it wasn't cleaned up when PyList_New() failed. CID 715364 by Christian Heimes · 13 years ago
  75. a264384 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 13 years ago
  76. 10f0c50 Issue #15487: Add a __sizeof__ implementation for buffered I/O objects. by Antoine Pitrou · 13 years ago
  77. 109d573 Issue #13248: io: Remove obsolete argument "max_buffer_size" of BufferedWriter and BufferedRWPair. by Florent Xicluna · 13 years ago
  78. 990a5fe Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 13 years ago
  79. 5135992 Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 13 years ago
  80. 9436361 Closes #10142: Support for SEEK_HOLE/SEEK_DATA by Jesus Cea · 13 years ago
  81. 990eff0 Backing out 86dc014cdd74. Not ready yet by Jesus Cea · 13 years ago
  82. 2b47f0a Close #10142: Support for SEEK_HOLE/SEEK_DATA by Jesus Cea · 13 years ago
  83. 7fe601c Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 14 years ago
  84. 58fcf9f Issue #13322: Fix BufferedWriter.write() to ensure that BlockingIOError is by Antoine Pitrou · 14 years ago
  85. 56a220a Issue #13393: BufferedReader.read1() now asks the full requested size to by Antoine Pitrou · 14 years ago
  86. 767046a Replace {Get,Set,Has}AttrString with *AttrId. by Martin v. Löwis · 14 years ago
  87. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 14 years ago
  88. 6b4883d PEP 3151 / issue #12555: reworking the OS and IO exception hierarchy. by Antoine Pitrou · 14 years ago
  89. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 14 years ago
  90. 42c28cd Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 14 years ago
  91. 1e44fec Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 14 years ago
  92. b619bb2 Issue #13070: Fix a crash when a TextIOWrapper caught in a reference cycle by Charles-François Natali · 14 years ago
  93. bf009f0 Issue #13087: BufferedReader.seek() now always raises UnsupportedOperation by Antoine Pitrou · 14 years ago
  94. e8bb1a0 Issue #12213: Fix a buffering bug with interleaved reads and writes that by Antoine Pitrou · 14 years ago
  95. e05565e Issue #12213: Fix a buffering bug with interleaved reads and writes that by Antoine Pitrou · 14 years ago
  96. bc93a11 Close #12229: Remove an unused argument of _bufferedreader_peek_unlocked(), by Victor Stinner · 14 years ago
  97. b57f108 Issue #12175: BufferedReader.read(-1) now calls raw.readall() if available. by Victor Stinner · 14 years ago
  98. b89b31a Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 14 years ago
  99. 00dd182 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 14 years ago
  100. 7c40489 Issue #12062: Fix a flushing bug when doing a certain type of I/O sequence by Antoine Pitrou · 14 years ago