| Commit message (Expand) | Author | Age | Files | Lines |
* | Revert "remove a strange non-ASCII character in _iomodule.c" (GH-17240) | Tal Einat | 2019-11-18 | 1 | -1/+1 |
|
|
* | remove a strange non-ASCII character in _iomodule.c (GH-17239) | Tal Einat | 2019-11-18 | 1 | -1/+1 |
|
|
* | closes bpo-27805: Ignore ESPIPE in initializing seek of append-mode files. (G... | Benjamin Peterson | 2019-11-12 | 1 | -9/+15 |
|
|
* | bpo-37330: open() no longer accept 'U' in file mode (GH-16959) | Victor Stinner | 2019-10-28 | 2 | -29/+3 |
|
|
* | bpo-11410: Standardize and use symbol visibility attributes across POSIX and ... | Vinay Sajip | 2019-10-15 | 2 | -2/+4 |
|
|
* | bpo-37206: Unrepresentable default values no longer represented as None. (GH-... | Serhiy Storchaka | 2019-09-14 | 4 | -12/+12 |
|
|
* | bpo-15999: Clean up of handling boolean arguments. (GH-15610) | Serhiy Storchaka | 2019-09-01 | 3 | -11/+13 |
|
|
* | Fix typos mostly in comments, docs and test names (GH-15209) | Min ho Kim | 2019-08-30 | 2 | -2/+2 |
|
|
* | bpo-37034: Display argument name on errors with keyword arguments with Argume... | Rémi Lapeyre | 2019-08-29 | 6 | -33/+33 |
|
|
* | bpo-37960: Silence only necessary errors in repr() of buffered and text strea... | Serhiy Storchaka | 2019-08-29 | 2 | -18/+16 |
|
|
* | bpo-34488: optimize BytesIO.writelines() (GH-8904) | Sergey Fedoseev | 2019-08-07 | 1 | -36/+59 |
|
|
* | bpo-37547: Fix a compiler warning in winconsoleio.c (GH-14785) | Zackery Spytz | 2019-07-19 | 1 | -1/+1 |
|
|
* | bpo-37547: add _PyObject_CallMethodOneArg (GH-14685) | Jeroen Demeyer | 2019-07-11 | 4 | -29/+26 |
|
|
* | bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) | Jeroen Demeyer | 2019-07-08 | 5 | -66/+64 |
|
|
* | bpo-37483: add _PyObject_CallOneArg() function (#14558) | Jeroen Demeyer | 2019-07-04 | 1 | -1/+1 |
|
|
* | bpo-37388: Development mode check encoding and errors (GH-14341) | Victor Stinner | 2019-06-25 | 1 | -0/+43 |
|
|
* | Fix the error handling in bytesio_sizeof(). (GH-10459) | Zackery Spytz | 2019-06-01 | 1 | -2/+7 |
|
|
* | bpo-36974: tp_print -> tp_vectorcall_offset and tp_reserved -> tp_as_async (G... | Jeroen Demeyer | 2019-05-31 | 7 | -30/+30 |
|
|
* | bpo-32388: Remove cross-version binary compatibility requirement in tp_flags ... | Antoine Pitrou | 2019-05-29 | 5 | -15/+13 |
|
|
* | bpo-36763: Implement the PEP 587 (GH-13592) | Victor Stinner | 2019-05-27 | 2 | -2/+2 |
|
|
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 3 | -1/+67 |
|
|
* | bpo-36748: optimize TextIOWrapper.write() for ASCII string (GH-13002) | Inada Naoki | 2019-05-16 | 1 | -21/+95 |
|
|
* | bpo-36900: Replace global conf vars with config (GH-13299) | Victor Stinner | 2019-05-14 | 1 | -1/+3 |
|
|
* | bpo-2091: Fix typo in exception message (GH-12987) | Berker Peksag | 2019-04-27 | 1 | -1/+1 |
|
|
* | bpo-36523: Add docstring to io.IOBase.writelines (GH-12683) | Marcin Niemira | 2019-04-22 | 2 | -3/+12 |
|
|
* | bpo-18748: io.IOBase destructor now logs close() errors in dev mode (GH-12786) | Victor Stinner | 2019-04-12 | 1 | -3/+15 |
|
|
* | bpo-36127: Argument Clinic: inline parsing code for keyword parameters. (GH-1... | Serhiy Storchaka | 2019-03-14 | 7 | -43/+502 |
|
|
* | bpo-36254: Fix invalid uses of %d in format strings in C. (GH-12264) | Serhiy Storchaka | 2019-03-13 | 1 | -1/+1 |
|
|
* | add missing break statement (GH-12147) | Inada Naoki | 2019-03-03 | 1 | -0/+4 |
|
|
* | Use names SEEK_SET, etc instead of magic number (GH-12057) | ngie-eign | 2019-03-03 | 1 | -6/+8 |
|
|
* | bpo-35582: Argument Clinic: Optimize the "all boring objects" case. (GH-11520) | Serhiy Storchaka | 2019-01-11 | 4 | -16/+28 |
|
|
* | bpo-35582: Argument Clinic: inline parsing code for positional parameters. (G... | Serhiy Storchaka | 2019-01-11 | 7 | -73/+356 |
|
|
* | bpo-23867: Argument Clinic: inline parsing code for a single positional param... | Serhiy Storchaka | 2018-12-25 | 5 | -16/+75 |
|
|
* | bpo-35504: Fix segfaults and SystemErrors when deleting certain attrs. (GH-11... | Zackery Spytz | 2018-12-17 | 1 | -0/+4 |
|
|
* | bpo-35436: Add missing PyErr_NoMemory() calls and other minor bug fixes. (GH-... | Zackery Spytz | 2018-12-07 | 1 | -2/+4 |
|
|
* | bpo-33029: Fix signatures of getter and setter functions. (GH-10746) | Serhiy Storchaka | 2018-11-27 | 1 | -1/+1 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8 in Argument Clinic. ... | Serhiy Storchaka | 2018-11-27 | 8 | -38/+38 |
|
|
* | bpo-35081: Add Include/internal/pycore_object.h (GH-10640) | Victor Stinner | 2018-11-21 | 7 | -1/+8 |
|
|
* | bpo-35081: Rename internal headers (GH-10275) | Victor Stinner | 2018-11-12 | 1 | -1/+1 |
|
|
* | bpo-35133: Fix mistakes when concatenate string literals on different lines. ... | Serhiy Storchaka | 2018-11-05 | 1 | -1/+1 |
|
|
* | bpo-35081: Move accu.h to Include/internal/pycore_accu.h (GH-10271) | Victor Stinner | 2018-11-01 | 1 | -1/+1 |
|
|
* | bpo-35081: Add pycore_ prefix to internal header files (GH-10263) | Victor Stinner | 2018-10-31 | 1 | -1/+1 |
|
|
* | bpo-35062: Fix parsing _io.IncrementalNewlineDecoder's *translate* argument. ... | Xiang Zhang | 2018-10-31 | 1 | -1/+1 |
|
|
* | bpo-33138: Change standard error message for non-pickleable and non-copyable ... | Serhiy Storchaka | 2018-10-31 | 4 | -42/+0 |
|
|
* | bpo-32236: open() emits RuntimeWarning if buffering=1 for binary mode (GH-4842) | Alexey Izbyshev | 2018-10-20 | 1 | -0/+9 |
|
|
* | bpo-34070: open() only checks for isatty if buffering < 0 (GH-8187) | David Herberth | 2018-10-19 | 1 | -3/+3 |
|
|
* | bpo-24658: Fix read/write greater than 2 GiB on macOS (GH-1705) | Stéphane Wirtel | 2018-10-17 | 1 | -5/+3 |
|
|
* | closes bpo-34646: Remove PyAPI_* macros from declarations. (GH-9218) | Benjamin Peterson | 2018-09-12 | 1 | -1/+1 |
|
|
* | bpo-34217: Use lowercase for windows headers (GH-8472) | Erik Janssens | 2018-08-16 | 1 | -1/+1 |
|
|
* | bpo-34287: Do not use second argument of METH_NOARGS functions (GH-8582) | jdemeyer | 2018-08-02 | 1 | -21/+21 |
|
|