1. 4659ddc Merge doc fixes from 3.5 by Martin Panter · 7 years ago
  2. 536d70e Fix grammar, typos and markup in documentation and code comments by Martin Panter · 7 years ago
  3. 0651583 Replaced outdated macros _PyUnicode_AsString and _PyUnicode_AsStringAndSize by Serhiy Storchaka · 8 years ago
  4. 3b73ea1 Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  5. f4934ea Issue #28701: Replace PyUnicode_CompareWithASCIIString with _PyUnicode_EqualToASCIIString. by Serhiy Storchaka · 8 years ago
  6. 5f548a2 Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when by Serhiy Storchaka · 8 years ago
  7. a7c972e Issue #28387: Fixed possible crash in _io.TextIOWrapper deallocator when by Serhiy Storchaka · 8 years ago
  8. 47ff073 more PY_LONG_LONG to long long by Benjamin Peterson · 8 years ago
  9. b6a9c97 Issue #26778: Fixed "a/an/and" typos in code comment, documentation and error by Serhiy Storchaka · 8 years ago
  10. ec39756 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  11. 4884271 Issue #22570: Renamed Py_SETREF to Py_XSETREF. by Serhiy Storchaka · 8 years ago
  12. bdb908e Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 8 years ago
  13. 4a1e70f Issue #20440: Applied yet one patch for using Py_SETREF. by Serhiy Storchaka · 8 years ago
  14. ef1585e Issue #25923: Added more const qualifiers to signatures of static and private functions. by Serhiy Storchaka · 8 years ago
  15. 2d06e84 Issue #25923: Added the const qualifier to static constant arrays. by Serhiy Storchaka · 8 years ago
  16. 2eb819f Issue #25523: Merge "a" to "an" fixes from 3.4 into 3.5 by Martin Panter · 9 years ago
  17. 7462b649 Issue #25523: Correct "a" article to "an" article by Martin Panter · 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. bb72c47 Use PyArg_ParseTuple (new API) instead of PyArg_Parse (old API) for parsing tuples. by Serhiy Storchaka · 9 years ago
  21. f24131f Issue #20175: Converted the _io module to Argument Clinic. by Serhiy Storchaka · 9 years ago
  22. 56452ee Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. by Antoine Pitrou · 9 years ago
  23. 85e3ee7 Issue #22982: Improve BOM handling when seeking to multiple positions of a writable text file. by Antoine Pitrou · 9 years ago
  24. 2e1c4e5 Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. by Serhiy Storchaka · 9 years ago
  25. 04d09eb Issue #23785: Fixed memory leak in TextIOWrapper.tell() in rare circumstances. by Serhiy Storchaka · 9 years ago
  26. 98beb75 merge 3.4 (#23093) by Benjamin Peterson · 10 years ago
  27. 10e76b6 allow more operations to work on detached streams (closes #23093) by Benjamin Peterson · 10 years ago
  28. 994c7f7 merge 3.4 (#22849) by Benjamin Peterson · 10 years ago
  29. 6c14f23 fix possible double free in TextIOWrapper.__init__ (closes #22849) by Benjamin Peterson · 10 years ago
  30. 78184af Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  31. e2bd2a7 Issue #21715: Extracted shared complicated code in the _io module to new by Serhiy Storchaka · 10 years ago
  32. 706768c Issue #22156: Fix some "comparison between signed and unsigned integers" by Victor Stinner · 10 years ago
  33. 7d7e775 Issue #10310: Use "unsigned int field:1" instead of "signed int field:1" in a by Victor Stinner · 10 years ago
  34. ec87a13 PyErr_NormalizeException doesn't like being called with an exception set by Serhiy Storchaka · 10 years ago
  35. 76d3f14 PyErr_NormalizeException doesn't like being called with an exception set by Serhiy Storchaka · 10 years ago
  36. 85e4235 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 10 years ago
  37. 8a8f7f9 Issue #21677: Fixed chaining nonnormalized exceptions in io close() methods. by Serhiy Storchaka · 10 years ago
  38. 38ca5a7 Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  39. c644e7c Issue #21396: Fix TextIOWrapper(..., write_through=True) to not force a flush() on the underlying binary stream. by Antoine Pitrou · 10 years ago
  40. 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
  41. a9b1524 Close #20404: blacklist non-text encodings in io.TextIOWrapper by Nick Coghlan · 10 years ago
  42. 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 11 years ago
  43. 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
  44. 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
  45. edd0de5 Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms. by Serhiy Storchaka · 11 years ago
  46. ec67d18 Issue #13461: Fix a crash in the TextIOWrapper.tell method on 64-bit platforms. by Serhiy Storchaka · 11 years ago
  47. 932ff83 Issue #18608: Avoid keeping a strong reference to the locale module inside the _io module. by Antoine Pitrou · 11 years ago
  48. 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
  49. 9a28297 Issue #9566: _io: Use Py_SAFE_DOWNCAST for fix a compiler warning on Windows x64 by Victor Stinner · 11 years ago
  50. f567727 Merge with 3.3 by Andrew Kuchling · 11 years ago
  51. c7b6c50 Describe 'surrogateescape' in the documentation. by Andrew Kuchling · 11 years ago
  52. cce1b8e Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying by Serhiy Storchaka · 11 years ago
  53. d03ce4a Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying by Serhiy Storchaka · 11 years ago
  54. 94dc673 Issue #17106: Fix a segmentation fault in io.TextIOWrapper when an underlying by Serhiy Storchaka · 11 years ago
  55. 84d0bf9 Additional fix for issue #12268: The io module file object write methods no by Gregory P. Smith · 11 years ago
  56. 99ec7f6 Additional fix for issue #12268: The io module file object write methods no by Gregory P. Smith · 11 years ago
  57. 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 · 11 years ago
  58. 9101e23 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 11 years ago
  59. 7898043 Issue #15989: Fix several occurrences of integer overflow by Serhiy Storchaka · 11 years ago
  60. 4c05969 merge 3.3 (#16597) by Benjamin Peterson · 12 years ago
  61. 6862361 call close on the underlying stream even if flush raises (closes #16597) by Benjamin Peterson · 12 years ago
  62. 743e0cd Issue #16166: Add PY_LITTLE_ENDIAN and PY_BIG_ENDIAN macros and unified by Christian Heimes · 12 years ago
  63. 6d10b4d #15796: merge with 3.2. by Ezio Melotti · 12 years ago
  64. 16d2b47 #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
  65. 721738f Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  66. 6f430e4 Issue #15604: Update uses of PyObject_IsTrue() to check for and handle errors correctly. by Antoine Pitrou · 12 years ago
  67. d1f9352 (Merge 3.2) open() / TextIOWrapper doc: make it explicit than newline='\n' by Victor Stinner · 12 years ago
  68. 401e17d open() / TextIOWrapper doc: make it explicit than newline='\n' doesn't by Victor Stinner · 12 years ago
  69. 3c25dfb Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). by Antoine Pitrou · 12 years ago
  70. 0c1c0d4 Make TextIOWrapper's documentation clearer by copying the newline argument's description from open(). by Antoine Pitrou · 12 years ago
  71. 990a5fe Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
  72. 5135992 Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
  73. f86a5e8 Close #11022: TextIOWrapper doesn't call locale.setlocale() anymore by Victor Stinner · 12 years ago
  74. 0f9eec1 Don't Py_DECREF NULL variable in io.IncrementalNewlineDecoder. by Ross Lagerwall · 12 years ago
  75. efb00c0 Issue #14153 Create _Py_device_encoding() to prevent _io from having to import by Brett Cannon · 12 years ago
  76. 408026c Merge 3.2 by Éric Araujo · 12 years ago
  77. fab9766 Fix typo in “seperat{or,ion}” by Éric Araujo · 12 years ago
  78. f8facac Fix compiler warnings by Victor Stinner · 13 years ago
  79. 9e30aa5 Fix misuse of PyUnicode_GET_SIZE() => PyUnicode_GET_LENGTH() by Victor Stinner · 13 years ago
  80. e532456 Issue #13393: In TextIOWrapper.read(n), try to read `n` characters as by Antoine Pitrou · 13 years ago
  81. 5c398e8 Restore performance of special casings for utf-16 and utf-32 in TextIOWrapper by Antoine Pitrou · 13 years ago
  82. c28e2e5 In text I/O, optimize scanning for new lines with 1-byte unicode chars by Antoine Pitrou · 13 years ago
  83. c1b0bfd Fix memory leak in io.StringIO by Antoine Pitrou · 13 years ago
  84. 767046a Replace {Get,Set,Has}AttrString with *AttrId. by Martin v. Löwis · 13 years ago
  85. bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
  86. afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
  87. c47adb0 Change PyUnicode_KIND to 1,2,4. Drop _KIND_SIZE and _CHARACTER_SIZE. by Martin v. Löwis · 13 years ago
  88. f7b8cb6 _io.textio: fix character type, use Py_UCS4 instead of Py_UNICODE by Victor Stinner · 13 years ago
  89. d63a3b8 Implement PEP 393. by Martin v. Löwis · 13 years ago
  90. d42c1d0 Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without by Antoine Pitrou · 13 years ago
  91. e96ec68 Issue #12591: Allow io.TextIOWrapper to work with raw IO objects (without by Antoine Pitrou · 13 years ago
  92. 90ce72d Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIOWrapper to a huge value, not TypeError. by Antoine Pitrou · 13 years ago
  93. cb4ae81 Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a TextIOWrapper to a huge value, not TypeError. by Antoine Pitrou · 13 years ago
  94. fd82113 Fast path for IncrementalNewlineDecoder.decode() in io.TextIOWrapper.read(-1) by Victor Stinner · 13 years ago
  95. 211b81d Issue #11114: Fix catastrophic performance of tell() on text files (up by Antoine Pitrou · 13 years ago
  96. a4815ca Issue #10872: The repr() of TextIOWrapper objects now includes the mode by Antoine Pitrou · 13 years ago
  97. 243757e Issue #10180: Pickling file objects is now explicitly forbidden, since by Antoine Pitrou · 14 years ago
  98. e033e06 Issue #10093: ResourceWarnings are now issued when files and sockets are by Antoine Pitrou · 14 years ago
  99. 0d739d7 Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an by Antoine Pitrou · 14 years ago
  100. f6c5783 Issue #6697: Check that _PyUnicode_AsString() result is not NULL in textio.c by Victor Stinner · 14 years ago