1. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 9 years ago
  2. 5a57ade Issue #20440: Massive replacing unsafe attribute setting code with special by Serhiy Storchaka · 9 years ago
  3. 5c4064e Issue #25421: __sizeof__ methods of builtin types now use dynamic basic size. by Serhiy Storchaka · 9 years ago
  4. 49d3db9 Issue #25717: Add comment explaining why errors are ignored by Martin Panter · 9 years ago
  5. 0bb62b1 Issue #25717: Tolerate fstat() failures in the FileIO constructor by Martin Panter · 9 years ago
  6. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  7. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 9 years ago
  8. f264416 Issue #22413: Remove comment made out of date by Argument Clinic by Martin Panter · 9 years ago
  9. 994815e Issue #22413: Merge StringIO doc from 3.4 into 3.5 by Martin Panter · 9 years ago
  10. cfad543 Issue #22413: Document newline effect on StringIO initializer and getvalue by Martin Panter · 9 years ago
  11. 3f930dc Merge typo fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  12. 9955a37 Various minor typos in documentation and comments by Martin Panter · 9 years ago
  13. db4220e Issue #25030: Do not document seek() as if it accepts keyword arguments by Martin Panter · 9 years ago
  14. 4e63f7a Issue #24989: Fixed buffer overread in BytesIO.readline() if a position is by Serhiy Storchaka · 9 years ago
  15. 6baa0f9 Fixes cast warning in bufferedio.c by Steve Dower · 9 years ago
  16. 45d6156 Issue #9858: Add missing method stubs to _io.RawIOBase. Patch by Laura Rupprecht. by Antoine Pitrou · 9 years ago
  17. d10d6ae Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
  18. 008d88b Issue #24009: Got rid of using rare "y#" format unit in TextIOWrapper.tell(). by Serhiy Storchaka · 9 years ago
  19. dbfdc38 Issue #24001: Argument Clinic converters now use accept={type} by Larry Hastings · 9 years ago
  20. 247789c Issue #24007: Argument Clinic now writes the format of PyArg_Parse*() at the by Serhiy Storchaka · 9 years ago
  21. 7e9d1d1 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 9 years ago
  22. 2b0d200 Issue #23908: os functions now reject paths with embedded null character by Serhiy Storchaka · 9 years ago
  23. bb72c47 Use PyArg_ParseTuple (new API) instead of PyArg_Parse (old API) for parsing tuples. by Serhiy Storchaka · 9 years ago
  24. 82adeff Fix typo in assert statement by Christian Heimes · 9 years ago
  25. f24131f Issue #20175: Converted the _io module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  26. 56452ee Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. by Antoine Pitrou · 9 years ago
  27. 85e3ee7 Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. by Antoine Pitrou · 9 years ago
  28. cb46f0e Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 9 years ago
  29. 25f85d4 Issue #23309: Avoid a deadlock at shutdown if a daemon thread is aborted by Antoine Pitrou · 9 years ago
  30. a1c7e72 Issue #23668: Suppresses invalid parameter handler around chsize calls. by Steve Dower · 9 years ago
  31. 8fc8980 Issue #23524: Replace _PyVerify_fd function with calls to _set_thread_local_invalid_parameter_handler. by Steve Dower · 9 years ago
  32. 3d2279f Issue #21859: Corrected FileIO docstrings. by Serhiy Storchaka · 9 years ago
  33. ea6d559 Issue #23796: peak and read1 methods of BufferedReader now raise ValueError by Berker Peksag · 9 years ago
  34. fe0a41a Issue #23668: Adds support for os.truncate and os.ftruncate on Windows by Steve Dower · 9 years ago
  35. cd092ef Issue #21859: Corrected FileIO docstrings. by Serhiy Storchaka · 9 years ago
  36. 5056769 Replaced "string" with "bytes object" in docstrings of binary I/O objects. by Serhiy Storchaka · 9 years ago
  37. b817b77 Replaced "string" with "bytes object" in docstrings of binary I/O objects. by Serhiy Storchaka · 9 years ago
  38. e134a7f Issue #23752: _Py_fstat() is now responsible to raise the Python exception by Victor Stinner · 9 years ago
  39. 2e1c4e5 Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. by Serhiy Storchaka · 9 years ago
  40. 04d09eb Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. by Serhiy Storchaka · 9 years ago
  41. 520bddf Issue #23752: When built from an existing file descriptor, io.FileIO() now only by Victor Stinner · 9 years ago
  42. 7665be6 Issue #21802: The reader in BufferedRWPair now is closed even when closing by Serhiy Storchaka · 9 years ago
  43. 8be6be4 Issue #21802: The reader in BufferedRWPair now is closed even when closing by Serhiy Storchaka · 9 years ago
  44. f329878 Issue #23753: Python doesn't support anymore platforms without stat() or by Victor Stinner · 9 years ago
  45. 66aab0c Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handle by Victor Stinner · 9 years ago
  46. 009b811 Removed unintentional trailing spaces in non-external and non-generated C files. by Serhiy Storchaka · 9 years ago
  47. 8acde7d Issue #23524: Change back to using Windows errors for _Py_fstat instead of the errno shim. by Steve Dower · 9 years ago
  48. 4a7cc88 Issue #23571: PyObject_Call(), PyCFunction_Call() and call_function() now by Victor Stinner · 9 years ago
  49. d81431f Issue #23524: Replace _PyVerify_fd function with calling _set_thread_local_invalid_parameter_handler on every thread. by Steve Dower · 9 years ago
  50. 9672da7 Issue #23285: Fix handling of EINTR in fileio.c by Victor Stinner · 9 years ago
  51. f2f373f Issue #23152: Implement _Py_fstat() to support files larger than 2 GB on Windows. by Steve Dower · 9 years ago
  52. 254dd59 Issue #5700: io.FileIO() called flush() after closing the file. by Serhiy Storchaka · 9 years ago
  53. a3712a9 Issue #5700: io.FileIO() called flush() after closing the file. by Serhiy Storchaka · 9 years ago
  54. 483405b Issue #22883: Got rid of outdated references to PyInt and PyString in comments. by Serhiy Storchaka · 9 years ago
  55. 6e6c59b Issue #23285: PEP 475 -- Retry system calls failing with EINTR. by Charles-François Natali · 9 years ago
  56. 650c1e8 Issue #14203: Remove obsolete support for view==NULL in bytesiobuf_getbuffer() by Stefan Krah · 9 years ago
  57. 38c30e6 Issue #15381: Fixed a bug in BytesIO.write(). by Serhiy Storchaka · 9 years ago
  58. b9765ee Issue #15381: Try to fix refcount bug. Empty and 1-byte buffers are always shared. by Serhiy Storchaka · 9 years ago
  59. 87d0b45 Issue #15381: Optimized io.BytesIO to make less allocations and copyings. by Serhiy Storchaka · 9 years ago
  60. 32ca3dc Issue #23099: Closing io.BytesIO with exported buffer is rejected now to by Serhiy Storchaka · 9 years ago
  61. c057c38 Issue #23099: Closing io.BytesIO with exported buffer is rejected now to by Serhiy Storchaka · 9 years ago
  62. 3dd3e26 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  63. 4fdb684 Issue #22896: Avoid to use PyObject_AsCharBuffer(), PyObject_AsReadBuffer() by Serhiy Storchaka · 9 years ago
  64. 98beb75 merge 3.4 (#23093) by Benjamin Peterson · 10 years ago
  65. 10e76b6 allow more operations to work on detached streams (closes #23093) by Benjamin Peterson · 10 years ago
  66. 4954f9f Issue #17401: Output the closefd attribute as boolean. by Serhiy Storchaka · 10 years ago
  67. 994c7f7 merge 3.4 (#22849) by Benjamin Peterson · 10 years ago
  68. 6c14f23 fix possible double free in TextIOWrapper.__init__ (closes #22849) by Benjamin Peterson · 10 years ago
  69. 933430a Issue #17401: document closefd in io.FileIO docs and add to repr by Robert Collins · 10 years ago
  70. 78184af Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  71. e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  72. 58ee2d3 merge 3.4 (#22517) by Benjamin Peterson · 10 years ago
  73. c44eb73 merge 3.3 (#22517) by Benjamin Peterson · 10 years ago
  74. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
  75. 43705d7 Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. by Berker Peksag · 10 years ago
  76. b87630c Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. by Berker Peksag · 10 years ago
  77. d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
  78. 706768c Issue #22156: Fix some "comparison between signed and unsigned integers" by Victor Stinner · 10 years ago
  79. d7728ca Issue #15381: Optimized line reading in io.BytesIO. by Serhiy Storchaka · 10 years ago
  80. cc66a73 Issue #22003: When initialized from a bytes object, io.BytesIO() now by Antoine Pitrou · 10 years ago
  81. e865128 properly decref the return value of close() by Benjamin Peterson · 10 years ago
  82. 4f654fb properly decref the return value of close() by Benjamin Peterson · 10 years ago
  83. 6680e9f (Merge 3.4) Issue #21090: io.FileIO.readall() does not ignore I/O errors by Victor Stinner · 10 years ago
  84. e10920f Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before, by Victor Stinner · 10 years ago
  85. de68722 Issue #21679: Prevent extraneous fstat() calls during open(). Patch by Bohuslav Kabrda. by Antoine Pitrou · 10 years ago
  86. a96fea0 add BufferedIOBase.readinto1 (closes #20578) by Benjamin Peterson · 10 years ago
  87. 7d7e775 Issue #10310: Use "unsigned int field:1" instead of "signed int field:1" in a by Victor Stinner · 10 years ago
  88. ec87a13 PyErr_NormalizeException doesn't like being called with an exception set by Serhiy Storchaka · 10 years ago
  89. 76d3f14 PyErr_NormalizeException doesn't like being called with an exception set by Serhiy Storchaka · 10 years ago
  90. 3a56117 Issue #21310: Fixed possible resource leak in failed open(). by Serhiy Storchaka · 10 years ago
  91. f10063e Issue #21310: Fixed possible resource leak in failed open(). by Serhiy Storchaka · 10 years ago
  92. 85e4235 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 10 years ago
  93. 8a8f7f9 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 10 years ago
  94. 4fb01ff backout 0fb7789b5eeb for test breakage (#20578) by Benjamin Peterson · 10 years ago
  95. 10e847b add BufferedIOBase.readinto1 (closes #20578) by Benjamin Peterson · 10 years ago
  96. 38ca5a7 Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  97. c644e7c Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  98. b850389 Issue #21057: TextIOWrapper now allows the underlying binary stream's read() or read1() method to return an arbitrary bytes-like object (such as a memoryview). by Antoine Pitrou · 10 years ago
  99. 7646620 #15840: make docs consistent by saying operations on closed files raise ValueError. by Andrew Kuchling · 10 years ago
  100. 2fc8f77 Issue #20404: reject non-text encodings early in TextIOWrapper. by Georg Brandl · 10 years ago