| Commit message (Expand) | Author | Age | Files | Lines |
* | bpo-42161: Modules/ uses _PyLong_GetZero() and _PyLong_GetOne() (GH-22998) | Victor Stinner | 2020-10-27 | 1 | -1/+2 |
|
|
* | bpo-40170: Use inline _PyType_HasFeature() function (GH-22375) | Victor Stinner | 2020-09-23 | 1 | -1/+2 |
|
|
* | bpo-40268: Remove unused structmember.h includes (GH-19530) | Victor Stinner | 2020-04-15 | 1 | -1/+1 |
|
|
* | bpo-40268: Add _PyInterpreterState_GetConfig() (GH-19492) | Victor Stinner | 2020-04-13 | 1 | -2/+1 |
|
|
* | bpo-39245: Switch to public API for Vectorcall (GH-18460) | Petr Viktorin | 2020-02-11 | 1 | -8/+8 |
|
|
* | bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) | Jeroen Demeyer | 2019-07-08 | 1 | -9/+8 |
|
|
* | bpo-37483: add _PyObject_CallOneArg() function (#14558) | Jeroen Demeyer | 2019-07-04 | 1 | -1/+1 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 1 | -4/+4 |
|
|
* | bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ... | Antoine Pitrou | 2019-05-29 | 1 | -2/+2 |
|
|
* | bpo-36763: Implement the PEP 587 (GH-13592) | Victor Stinner | 2019-05-27 | 1 | -1/+1 |
|
|
* | bpo-36523: Add docstring to io.IOBase.writelines (GH-12683) | Marcin Niemira | 2019-04-22 | 1 | -1/+6 |
|
|
* | bpo-18748: io.IOBase destructor now logs close() errors in dev mode (GH-12786) | Victor Stinner | 2019-04-12 | 1 | -3/+15 |
|
|
* | bpo-35081: Add Include/internal/pycore_object.h (GH-10640) | Victor Stinner | 2018-11-21 | 1 | -0/+1 |
|
|
* | bpo-34068: _io__IOBase_close_impl could call _PyObject_SetAttrId with an exce... | Zackery Spytz | 2018-07-17 | 1 | -5/+7 |
|
|
* | bpo-32571: Avoid raising unneeded AttributeError and silencing it in C code ... | Serhiy Storchaka | 2018-01-25 | 1 | -25/+13 |
|
|
* | bpo-31572: Get rid of PyObject_HasAttr() and _PyObject_HasAttrId() in the _io... | Serhiy Storchaka | 2018-01-16 | 1 | -34/+74 |
|
|
* | bpo-30061: Check if PyObject_Size()/PySequence_Size()/PyMapping_Size() (#1096) | Serhiy Storchaka | 2017-04-19 | 1 | -4/+9 |
|
|
* | bpo-30022: Get rid of using EnvironmentError and IOError (except test… (#1051) | Serhiy Storchaka | 2017-04-16 | 1 | -2/+2 |
|
|
* | bpo-30068: add missing iter(self) in _io._IOBase.readlines when hint is prese... | Xiang Zhang | 2017-04-15 | 1 | -8/+17 |
|
|
* | bpo-29852: Argument Clinic Py_ssize_t converter now supports None (#716) | Serhiy Storchaka | 2017-03-30 | 1 | -11/+4 |
|
|
* | bpo-29865: Use PyXXX_GET_SIZE macros rather than Py_SIZE for concrete types. ... | Serhiy Storchaka | 2017-03-21 | 1 | -1/+1 |
|
|
* | Use _PyObject_CallMethodIdObjArgs() in _io | Victor Stinner | 2016-12-09 | 1 | -1/+2 |
|
|
* | Issue #27895: Spelling fixes (Contributed by Ville Skyttä). | Raymond Hettinger | 2016-08-30 | 1 | -1/+1 |
|
|
* | Issue #20699: Merge io bytes-like fixes from 3.5 | Martin Panter | 2016-05-28 | 1 | -2/+3 |
|\ |
|
| * | Issue #20699: Document that “io” methods accept bytes-like objects | Martin Panter | 2016-05-28 | 1 | -2/+3 |
|
|
* | | Issue #22854: Merge UnsupportedOperation fixes from 3.5 | Martin Panter | 2016-03-31 | 1 | -8/+8 |
|\ \
| |/ |
|
| * | Issue #22854: Clarify documentation about UnsupportedOperation and add tests | Martin Panter | 2016-03-31 | 1 | -8/+8 |
|
|
* | | cleanup iobase.c | Victor Stinner | 2016-03-19 | 1 | -1/+1 |
|/ |
|
* | Issue #9858: Add missing method stubs to _io.RawIOBase. Patch by Laura Ruppr... | Antoine Pitrou | 2015-05-20 | 1 | -0/+16 |
|
|
* | Issue #20175: Converted the _io module to Argument Clinic. | Serhiy Storchaka | 2015-04-16 | 1 | -94/+154 |
|
|
* | #15840: make docs consistent by saying operations on closed files raise Value... | Andrew Kuchling | 2014-04-16 | 1 | -2/+2 |
|
|
* | Issue #20037: Avoid crashes when doing text I/O late at interpreter shutdown. | Antoine Pitrou | 2013-12-21 | 1 | -1/+3 |
|
|
* | Issue #19515: Remove identifiers duplicated in the same file. | Victor Stinner | 2013-11-12 | 1 | -3/+2 |
|
|
* | Issue #19437: Fix _io._IOBase.close(), handle _PyObject_SetAttrId() failure | Victor Stinner | 2013-11-07 | 1 | -3/+8 |
|
|
* | Issue #18408: Fix iobase_readline(), handle PyByteArray_Resize() failure | Victor Stinner | 2013-10-29 | 1 | -5/+8 |
|
|
* | Fix use of uninitialized scalar variable, see 3f994367a979 | Christian Heimes | 2013-07-30 | 1 | -1/+3 |
|
|
* | Issue #18112: PEP 442 implementation (safe object finalization). | Antoine Pitrou | 2013-07-30 | 1 | -40/+52 |
|
|
* | Merge 3.2, Issue #17047: remove doubled words found in 2.7 to 3.4 | Terry Jan Reedy | 2013-03-11 | 1 | -1/+1 |
|\ |
|
| * | Issue #17047: remove doubled words found in 2.7 to 3.4 Modules/*, | Terry Jan Reedy | 2013-03-11 | 1 | -1/+1 |
|
|
* | | Additional fix for issue #12268: The io module file object write methods no | Gregory P. Smith | 2013-02-01 | 1 | -1/+4 |
|\ \
| |/ |
|
| * | Additional fix for Issue #12268: The io module file object writelines() metho... | Gregory P. Smith | 2013-02-01 | 1 | -1/+4 |
|
|
* | | #15796: merge with 3.2. | Ezio Melotti | 2012-09-18 | 1 | -1/+1 |
|\ \
| |/ |
|
| * | #15796: Fix \n in readline docstring. Patch by Serhiy Storchaka. | Ezio Melotti | 2012-09-18 | 1 | -1/+1 |
|
|
* | | Fixes issue #12268: File readline, readlines and read() or readall() methods | Gregory P. Smith | 2012-06-24 | 1 | -4/+19 |
|\ \
| |/ |
|
| * | Fixes issue #12268: File readline, readlines and read() or readall() methods | Gregory P. Smith | 2012-06-24 | 1 | -2/+19 |
|
|
* | | use new generic __dict__ descriptor implementations | Benjamin Peterson | 2012-02-20 | 1 | -14/+1 |
|
|
* | | Replace {Get,Set,Has}AttrString with *AttrId. | Martin v. Löwis | 2011-10-14 | 1 | -3/+6 |
|
|
* | | Rename _Py_identifier to _Py_IDENTIFIER. | Martin v. Löwis | 2011-10-14 | 1 | -6/+6 |
|
|
* | | Add API for static strings, primarily good for identifiers. | Martin v. Löwis | 2011-10-09 | 1 | -8/+19 |
|/ |
|
* | cast to getter | Benjamin Peterson | 2011-09-06 | 1 | -1/+1 |
|
|