| Commit message (Expand) | Author | Age | Files | Lines |
* | Replace PyObject_Del with PyObject_Free (#122453) | Victor Stinner | 2024-08-01 | 1 | -1/+1 |
|
|
* | gh-87193: Support bytes objects with refcount > 1 in _PyBytes_Resize() (GH-11... | Serhiy Storchaka | 2024-03-25 | 1 | -7/+1 |
|
|
* | gh-82626: Emit a warning when bool is used as a file descriptor (GH-111275) | Serhiy Storchaka | 2024-02-05 | 1 | -0/+7 |
|
|
* | gh-110014: Include explicitly <unistd.h> header (#110155) | Victor Stinner | 2023-09-30 | 1 | -7/+11 |
|
|
* | gh-110079: Remove extern "C" { ...} in C code (#110080) | Victor Stinner | 2023-09-29 | 1 | -9/+0 |
|
|
* | gh-109611: Add convenient C API function _PyFile_Flush() (GH-109612) | Serhiy Storchaka | 2023-09-23 | 1 | -0/+12 |
|
|
* | gh-108444: Replace _PyLong_AsInt() with PyLong_AsInt() (#108459) | Victor Stinner | 2023-08-24 | 1 | -2/+2 |
|
|
* | gh-106521: Remove _PyObject_LookupAttr() function (GH-106642) | Serhiy Storchaka | 2023-07-12 | 1 | -1/+1 |
|
|
* | gh-104922: remove PY_SSIZE_T_CLEAN (#106315) | Inada Naoki | 2023-07-02 | 1 | -1/+0 |
|
|
* | gh-99537: Use Py_SETREF(var, NULL) in C code (#99687) | Victor Stinner | 2022-11-23 | 1 | -6/+3 |
|
|
* | gh-99537: Use Py_SETREF() function in C code (#99657) | Victor Stinner | 2022-11-22 | 1 | -4/+2 |
|
|
* | gh-96670: Raise SyntaxError when parsing NULL bytes (#97594) | Pablo Galindo Salgado | 2022-09-27 | 1 | -10/+19 |
|
|
* | gh-93741: Add private C API _PyImport_GetModuleAttrString() (GH-93742) | Serhiy Storchaka | 2022-06-14 | 1 | -10/+10 |
|
|
* | bpo-46541: Replace core use of _Py_IDENTIFIER() with statically initialized g... | Eric Snow | 2022-02-08 | 1 | -14/+8 |
|
|
* | bpo-45479: Futher simplify Py_UniversalNewlineFgets. (GH-28967) | Benjamin Peterson | 2021-10-15 | 1 | -23/+9 |
|
|
* | closes bpo-45479: Degunkify Py_UniversalNewlineFgets. (GH-28965) | Benjamin Peterson | 2021-10-15 | 1 | -32/+5 |
|
|
* | bpo-45439: Move _PyObject_CallNoArgs() to pycore_call.h (GH-28895) | Victor Stinner | 2021-10-12 | 1 | -1/+2 |
|
|
* | bpo-45439: Rename _PyObject_CallNoArg() to _PyObject_CallNoArgs() (GH-28891) | Victor Stinner | 2021-10-11 | 1 | -1/+1 |
|
|
* | bpo-43916: PyStdPrinter_Type uses Py_TPFLAGS_DISALLOW_INSTANTIATION (GH-25749) | Victor Stinner | 2021-04-30 | 1 | -27/+4 |
|
|
* | bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes"... | Serhiy Storchaka | 2020-10-09 | 1 | -0/+11 |
|
|
* | bpo-40268: Remove a few pycore_pystate.h includes (GH-19510) | Victor Stinner | 2020-04-14 | 1 | -1/+1 |
|
|
* | bpo-39943: Add the const qualifier to pointers on non-mutable PyBytes data. (... | Serhiy Storchaka | 2020-04-12 | 1 | -1/+1 |
|
|
* | bpo-39245: Switch to public API for Vectorcall (GH-18460) | Petr Viktorin | 2020-02-11 | 1 | -1/+1 |
|
|
* | bpo-39573: Use Py_REFCNT() macro (GH-18388) | Victor Stinner | 2020-02-06 | 1 | -1/+1 |
|
|
* | bpo-39487: Merge duplicated _Py_IDENTIFIER identifiers in C code (GH-18254) | Hai Shi | 2020-01-30 | 1 | -2/+2 |
|
|
* | bpo-15999: Clean up of handling boolean arguments. (GH-15610) | Serhiy Storchaka | 2019-09-01 | 1 | -2/+2 |
|
|
* | bpo-37994: Fix silencing all errors if an attribute lookup fails. (GH-15630) | Serhiy Storchaka | 2019-09-01 | 1 | -2/+4 |
|
|
* | bpo-37337: Add _PyObject_CallMethodNoArgs() (GH-14267) | Jeroen Demeyer | 2019-07-08 | 1 | -1/+1 |
|
|
* | 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 | -2/+2 |
|
|
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -1/+69 |
|
|
* | bpo-36251: Fix format strings used in match_repr() and stdprinter_repr(). (GH... | sth | 2019-03-10 | 1 | -1/+1 |
|
|
* | bpo-35713: Split _Py_InitializeCore into subfunctions (GH-11650) | Victor Stinner | 2019-01-22 | 1 | -2/+6 |
|
|
* | bpo-35214: Add _Py_ prefix to MEMORY_SANITIZER def. (GH-10503) | Gregory P. Smith | 2018-11-13 | 1 | -1/+1 |
|
|
* | Disable getc_unlocked() with MemorySanitizer. (GH-10499) | Gregory P. Smith | 2018-11-13 | 1 | -1/+2 |
|
|
* | bpo-33012: Fix invalid function cast warnings with gcc 8 for METH_NOARGS. (GH... | Siddhesh Poyarekar | 2018-04-29 | 1 | -3/+3 |
|
|
* | bpo-29548: Fix some inefficient call API usage (GH-97) | INADA Naoki | 2017-02-16 | 1 | -27/+14 |
|
|
* | Issue #28999: Use Py_RETURN_NONE, Py_RETURN_TRUE and Py_RETURN_FALSE wherever | Serhiy Storchaka | 2017-01-23 | 1 | -2/+1 |
|
|
* | Issue #28858: Remove _PyObject_CallArg1() macro | Victor Stinner | 2016-12-05 | 1 | -1/+1 |
|
|
* | Added the const qualifier to char* variables that refer to readonly internal | Serhiy Storchaka | 2016-11-20 | 1 | -5/+3 |
|
|
* | Rename _PyObject_FastCall() to _PyObject_FastCallDict() | Victor Stinner | 2016-08-22 | 1 | -1/+1 |
|
|
* | PyFile_WriteObject() now uses fast call | Victor Stinner | 2016-08-19 | 1 | -9/+2 |
|
|
* | (Merge 3.4) Issue #25182: Fix compilation on Windows | Victor Stinner | 2015-09-30 | 1 | -3/+6 |
|\ |
|
| * | Issue #25182: Fix compilation on Windows | Victor Stinner | 2015-09-30 | 1 | -3/+6 |
|
|
* | | Issue #25182: The stdprinter (used as sys.stderr before the io module is | Serhiy Storchaka | 2015-09-30 | 1 | -4/+21 |
|\ \
| |/ |
|
| * | Issue #25182: The stdprinter (used as sys.stderr before the io module is | Serhiy Storchaka | 2015-09-30 | 1 | -6/+22 |
|
|
* | | stdprinter_write(): mention the encoding | Victor Stinner | 2015-03-24 | 1 | -3/+4 |
|
|
* | | Issue #23708: Add _Py_read() and _Py_write() functions to factorize code handle | Victor Stinner | 2015-03-19 | 1 | -17/+6 |
|/ |
|
* | Issue #1772673: The type of `char*` arguments now changed to `const char*`. | Serhiy Storchaka | 2013-10-19 | 1 | -2/+2 |
|
|
* | Issue #18783: Removed existing mentions of Python long type in docstrings, | Serhiy Storchaka | 2013-08-27 | 1 | -2/+2 |
|\ |
|