- ab86521 bpo-36523: Add docstring to io.IOBase.writelines (GH-12683) by Marcin Niemira · 6 years ago
- 4423504 bpo-18748: io.IOBase destructor now logs close() errors in dev mode (GH-12786) by Victor Stinner · 6 years ago
- bcda8f1 bpo-35081: Add Include/internal/pycore_object.h (GH-10640) by Victor Stinner · 6 years ago
- 28f0736 bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exception set (GH-8282) by Zackery Spytz · 6 years ago
- f320be7 bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code (GH-5222) by Serhiy Storchaka · 7 years ago
- 4d9aec0 bpo-31572: Get rid of PyObject_HasAttr() and _PyObject_HasAttrId() in the _io module. (#3726) by Serhiy Storchaka · 7 years ago
- bf623ae bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) by Serhiy Storchaka · 8 years ago
- 55fe1ae bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) by Serhiy Storchaka · 8 years ago
- 026435c bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is present (#1130) by Xiang Zhang · 8 years ago
- 762bf40 bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) by Serhiy Storchaka · 8 years ago
- fff9a31 bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. (#748) by Serhiy Storchaka · 8 years ago
- 61bdb0d Use _PyObject_CallMethodIdObjArgs() in _io by Victor Stinner · 8 years ago
- 15f44ab Issue #27895: Spelling fixes (Contributed by Ville Skyttä). by Raymond Hettinger · 8 years ago
- c249221 Issue #20699: Merge io bytes-like fixes from 3.5 by Martin Panter · 8 years ago
- 6bb91f3 Issue #20699: Document that “io” methods accept bytes-like objects by Martin Panter · 8 years ago
- 047f3b7 Issue #22854: Merge UnsupportedOperation fixes from 3.5 by Martin Panter · 9 years ago
- 754aab2 Issue #22854: Clarify documentation about UnsupportedOperation and add tests by Martin Panter · 9 years ago
- 928bff0 cleanup iobase.c by Victor Stinner · 9 years ago
- 45d6156 Issue #9858: Add missing method stubs to _io.RawIOBase. Patch by Laura Rupprecht. by Antoine Pitrou · 9 years ago
- f24131f Issue #20175: Converted the _io module to Argument Clinic. by Serhiy Storchaka · 10 years ago
- 7646620 #15840: make docs consistent by saying operations on closed files raise ValueError. by Andrew Kuchling · 11 years ago
- 712cb73 Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. by Antoine Pitrou · 11 years ago
- 3f36a57 Issue #19515: Remove identifiers duplicated in the same file. by Victor Stinner · 11 years ago
- aa5bbfa Issue #19437: Fix _io._IOBase.close(), handle _PyObject_SetAttrId() failure by Victor Stinner · 11 years ago
- cc024d1 Issue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failure by Victor Stinner · 11 years ago
- 72f455e Fix use of uninitialized scalar variable, see 3f994367a979 CID 1058763 by Christian Heimes · 11 years ago
- 796564c Issue #18112: PEP 442 implementation (safe object finalization). by Antoine Pitrou · 11 years ago
- 09b7503 Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4 by Terry Jan Reedy · 12 years ago
- 0158af3 Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, by Terry Jan Reedy · 12 years ago
- 99ec7f6 Additional fix for issue #12268: The io module file object write methods no by Gregory P. Smith · 12 years ago
- 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
- 6d10b4d #15796: merge with 3.2. by Ezio Melotti · 12 years ago
- 16d2b47 #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. by Ezio Melotti · 12 years ago
- 990a5fe Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
- 5135992 Fixes issue #12268: File readline, readlines and read() or readall() methods by Gregory P. Smith · 12 years ago
- 23d7f12 use new generic __dict__ descriptor implementations by Benjamin Peterson · 13 years ago
- 767046a Replace {Get,Set,Has}AttrString with *AttrId. by Martin v. Löwis · 13 years ago
- bd928fe Rename _Py_identifier to _Py_IDENTIFIER. by Martin v. Löwis · 13 years ago
- afe55bb Add API for static strings, primarily good for identifiers. by Martin v. Löwis · 13 years ago
- f22913b cast to getter by Benjamin Peterson · 13 years ago
- f6f3a35 add a __dict__ descr for IOBase (closes #12878) by Benjamin Peterson · 13 years ago
- 988512c (Merge 3.1) Issue #12175: RawIOBase.readall() now returns None if read() by Victor Stinner · 13 years ago
- a80987f Issue #12175: RawIOBase.readall() now returns None if read() returns None. by Victor Stinner · 13 years ago
- 3b3499b #11565: Merge with 3.1. by Ezio Melotti · 14 years ago
- 1392500 #11565: Fix several typos. Patch by Piotr Kasprzyk. by Ezio Melotti · 14 years ago
- e5e75c6 Merged revisions 84814 via svnmerge from by Antoine Pitrou · 14 years ago
- 328ec74 Issue #9854: The default read() implementation in io.RawIOBase now by Antoine Pitrou · 14 years ago
- 616453c More docstring updates by Amaury Forgeot d'Arc · 14 years ago
- 0d739d7 Issue #9293: I/O streams now raise `io.UnsupportedOperation` when an by Antoine Pitrou · 14 years ago
- faf9007 Merged revisions 80722 via svnmerge from by Antoine Pitrou · 15 years ago
- 6be8876 Merged revisions 80720 via svnmerge from by Antoine Pitrou · 15 years ago
- 66f9fea Merged revisions 77895-77896 via svnmerge from by Antoine Pitrou · 15 years ago
- 905a2ff Merged revisions 77890 via svnmerge from by Antoine Pitrou · 15 years ago
- 6b59f77 Merged revisions 76806,76808 via svnmerge from by Benjamin Peterson · 15 years ago
- 0551613 Merged revisions 76807 via svnmerge from by Benjamin Peterson · 15 years ago
- bf5ff76 Merged revisions 76805 via svnmerge from by Benjamin Peterson · 15 years ago
- 680bf1a move to a naming scheme with all lowercase and underscores by Benjamin Peterson · 15 years ago
- 1fea321 use NULL for the ends of tables by Benjamin Peterson · 16 years ago
- 8d8d630 Issue 5682: Move _io module into its own subdirectory. by Alexandre Vassalotti · 16 years ago[Renamed from Modules/_iobase.c]
- 00a9b73 Rewrite IOBase.readall to avoid costly string resizes, and plug a leak by Antoine Pitrou · 16 years ago
- 1fcadce Fix failures introduced by buggy merge (2) by Antoine Pitrou · 16 years ago
- 4fa88fa merge the io-c branch: C implementation of the io module by Benjamin Peterson · 16 years ago