1. 78184af Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  2. e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  3. 58ee2d3 merge 3.4 (#22517) by Benjamin Peterson · 10 years ago
  4. c44eb73 merge 3.3 (#22517) by Benjamin Peterson · 10 years ago
  5. bbd0a32 clear BufferedRWPair weakrefs on deallocation (closes #22517) by Benjamin Peterson · 10 years ago
  6. 43705d7 Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. by Berker Peksag · 10 years ago
  7. b87630c Issue #21860: Correct docstrings of FileIO.seek() and FileIO.truncate() methods. by Berker Peksag · 10 years ago
  8. d8a1447 Issue #22215: Now ValueError is raised instead of TypeError when str or bytes by Serhiy Storchaka · 10 years ago
  9. 706768c Issue #22156: Fix some "comparison between signed and unsigned integers" by Victor Stinner · 10 years ago
  10. d7728ca Issue #15381: Optimized line reading in io.BytesIO. by Serhiy Storchaka · 10 years ago
  11. cc66a73 Issue #22003: When initialized from a bytes object, io.BytesIO() now by Antoine Pitrou · 10 years ago
  12. e865128 properly decref the return value of close() by Benjamin Peterson · 10 years ago
  13. 4f654fb properly decref the return value of close() by Benjamin Peterson · 10 years ago
  14. 6680e9f (Merge 3.4) Issue #21090: io.FileIO.readall() does not ignore I/O errors by Victor Stinner · 10 years ago
  15. e10920f Issue #21090: io.FileIO.readall() does not ignore I/O errors anymore. Before, by Victor Stinner · 10 years ago
  16. de68722 Issue #21679: Prevent extraneous fstat() calls during open(). Patch by Bohuslav Kabrda. by Antoine Pitrou · 10 years ago
  17. a96fea0 add BufferedIOBase.readinto1 (closes #20578) by Benjamin Peterson · 10 years ago
  18. 7d7e775 Issue #10310: Use "unsigned int field:1" instead of "signed int field:1" in a by Victor Stinner · 10 years ago
  19. ec87a13 PyErr_NormalizeException doesn't like being called with an exception set by Serhiy Storchaka · 10 years ago
  20. 76d3f14 PyErr_NormalizeException doesn't like being called with an exception set by Serhiy Storchaka · 10 years ago
  21. 3a56117 Issue #21310: Fixed possible resource leak in failed open(). by Serhiy Storchaka · 10 years ago
  22. f10063e Issue #21310: Fixed possible resource leak in failed open(). by Serhiy Storchaka · 10 years ago
  23. 85e4235 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 10 years ago
  24. 8a8f7f9 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 10 years ago
  25. 4fb01ff backout 0fb7789b5eeb for test breakage (#20578) by Benjamin Peterson · 10 years ago
  26. 10e847b add BufferedIOBase.readinto1 (closes #20578) by Benjamin Peterson · 10 years ago
  27. 38ca5a7 Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  28. c644e7c Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  29. 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
  30. 7646620 #15840: make docs consistent by saying operations on closed files raise ValueError. by Andrew Kuchling · 10 years ago
  31. 2fc8f77 Issue #20404: reject non-text encodings early in TextIOWrapper. by Georg Brandl · 11 years ago
  32. 5bdfc51 Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. by Serhiy Storchaka · 11 years ago
  33. 61e2493 Issue #17671: Fixed a crash when use non-initialized io.BufferedRWPair. by Serhiy Storchaka · 11 years ago
  34. a9b1524 Close #20404: blacklist non-text encodings in io.TextIOWrapper by Nick Coghlan · 11 years ago
  35. 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 11 years ago
  36. 6787a38 Issue #15204: Deprecated the 'U' mode in file-like objects. by Serhiy Storchaka · 11 years ago
  37. 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
  38. aa5bbfa Issue #19437: Fix _io._IOBase.close(), handle _PyObject_SetAttrId() failure by Victor Stinner · 11 years ago
  39. d9d0419 Issue #19512: fileio_init() reuses PyId_name identifier instead of "name" by Victor Stinner · 11 years ago
  40. cc024d1 Issue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failure by Victor Stinner · 11 years ago
  41. 4d39700 Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers. by Antoine Pitrou · 11 years ago
  42. 09fcb72 Issue #19356: Avoid using a C variabled named "_self", it's a reserved word in some C compilers. by Antoine Pitrou · 11 years ago
  43. fd4722c Issue #9548: Add a minimal "_bootlocale" module that is imported by the _io module instead of the full locale module. by Antoine Pitrou · 11 years ago
  44. e619427 Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened. by Antoine Pitrou · 11 years ago
  45. e93b63b Issue #18876: The FileIO.mode attribute now better reflects the actual mode under which the file was opened. by Antoine Pitrou · 11 years ago
  46. daf4555 Issue #18571: Implementation of the PEP 446: file descriptors and file handles by Victor Stinner · 11 years ago
  47. edd0de5 Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms. by Serhiy Storchaka · 11 years ago
  48. ec67d18 Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms. by Serhiy Storchaka · 11 years ago
  49. 932ff83 Issue #18608: Avoid keeping a strong reference to the locale module inside the _io module. by Antoine Pitrou · 11 years ago
  50. 72f455e Fix use of uninitialized scalar variable, see 3f994367a979 CID 1058763 by Christian Heimes · 11 years ago
  51. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  52. ace47d7 Issue #18408: PyEval_EvalFrameEx() and PyEval_CallObjectWithKeywords() now fail by Victor Stinner · 11 years ago
  53. 85c761d Issue #18408: Fix fileio_read() on _PyBytes_Resize() failure by Victor Stinner · 11 years ago
  54. 9ba6962 Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
  55. 9ad51ec Issue #18344: Fix potential ref-leaks in _bufferedreader_read_all(). by Richard Oudkerk · 11 years ago
  56. 14b9b11 If MS_WIN64 is defined, MS_WINDOWS is also defined: #ifdef can be simplified. by Victor Stinner · 11 years ago
  57. 9a28297 Issue #9566: _io: Use Py_SAFE_DOWNCAST for fix a compiler warning on Windows x64 by Victor Stinner · 11 years ago
  58. 9975877 Check for correct macro, code uses S_ISDIR(). by Christian Heimes · 11 years ago
  59. 91e8b81 Check for correct macro, code uses S_ISDIR(). by Christian Heimes · 11 years ago
  60. f567727 Merge with 3.3 by Andrew Kuchling · 11 years ago
  61. c7b6c50 Describe 'surrogateescape' in the documentation. by Andrew Kuchling · 11 years ago
  62. 37a79a1 Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw by Serhiy Storchaka · 11 years ago
  63. 281945f Issue #18025: Fixed a segfault in io.BufferedIOBase.readinto() when raw by Serhiy Storchaka · 11 years ago
  64. 3e26939 FileIO.readall(): remove trailing space from an exception message by Victor Stinner · 11 years ago
  65. af7260e Issue #15758: Fix FileIO.readall() so it no longer has O(n**2) complexity. by Richard Oudkerk · 11 years ago
  66. 16c41d8 Merge 3.3, issue #17047: remove doubled words found in 2.7 to 3.4 by Terry Jan Reedy · 12 years ago
  67. 09b7503 Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4 by Terry Jan Reedy · 12 years ago
  68. 0158af3 Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, by Terry Jan Reedy · 12 years ago
  69. d7c59e1 Merge #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 12 years ago
  70. 9f10f56 Merge #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 12 years ago
  71. 67bfe80 #17275: Fix class name in init errors in C bufferedio classes. by R David Murray · 12 years ago
  72. cce1b8e Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying by Serhiy Storchaka · 12 years ago
  73. d03ce4a Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying by Serhiy Storchaka · 12 years ago
  74. 94dc673 Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying by Serhiy Storchaka · 12 years ago
  75. 84d0bf9 Additional fix for issue #12268: The io module file object write methods no by Gregory P. Smith · 12 years ago
  76. 99ec7f6 Additional fix for issue #12268: The io module file object write methods no by Gregory P. Smith · 12 years ago
  77. b9817b0 Additional fix for Issue #12268: The io module file object writelines() methods no longer abort early when one of its write system calls is interrupted (EINTR). by Gregory P. Smith · 12 years ago
  78. 441d30f Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  79. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  80. 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 12 years ago
  81. fd53a5a (Merge 3.3) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB. by Victor Stinner · 12 years ago
  82. 6f84659 (Merge 3.2) Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB. by Victor Stinner · 12 years ago
  83. c44057d Issue #16367: Fix FileIO.readall() on Windows for files larger than 2 GB by Victor Stinner · 12 years ago
  84. 4c05969 merge 3.3 (#16597) by Benjamin Peterson · 12 years ago
  85. 6862361 call close on the underlying stream even if flush raises (closes #16597) by Benjamin Peterson · 12 years ago
  86. a191959 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  87. 5b89840 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  88. 737fb89 Issue #16714: use 'raise' exceptions, don't 'throw'. by Andrew Svetlov · 12 years ago
  89. 292c835 Issue #15478: Raising an OSError doesn't decode or encode the filename anymore by Victor Stinner · 12 years ago
  90. 743e0cd Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified by Christian Heimes · 12 years ago
  91. dc46945 Closes #15488: Closed files keep their buffer alive by Jesus Cea · 12 years ago
  92. 6d10b4d #15796: merge with 3.2. by Ezio Melotti · 12 years ago
  93. 16d2b47 #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  94. f47d79f 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 · 12 years ago
  95. 89ff3c7 Fixed out-of-bounce write to rawmode buffer. The fixed size buffer wasn't enlarged for the new 'x' flag. The buffer may contain the 5 flags xrwa+ and the \0 byte by Christian Heimes · 12 years ago
  96. ea94ba4 Merge 3.2. by Stefan Krah · 12 years ago
  97. 96efdd4 Issue #15868: Fix refleak in bytesio.c (Coverity #715365). by Stefan Krah · 12 years ago
  98. 11946fb Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 12 years ago
  99. 1d85745 Issue #15841: The readable(), writable() and seekable() methods of BytesIO by Antoine Pitrou · 12 years ago
  100. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago