Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | gh-106320: Remove private _Py_UniversalNewlineFgetsWithSize() (#108602) | Victor Stinner | 2023-08-29 | 1 | -1/+0 |
| | | | | | The remove private _Py_UniversalNewlineFgetsWithSize() function from the public C API: move it the internal C API (pycore_fileutils.h). No longer export the function. | ||||
* | gh-106320: Remove private _PyLong_FileDescriptor_Converter() (#108503) | Victor Stinner | 2023-08-26 | 1 | -2/+0 |
| | | | | | | | | | Move the private _PyLong converter functions to the internal C API * _PyLong_FileDescriptor_Converter(): moved to pycore_fileutils.h * _PyLong_Size_t_Converter(): moved to pycore_long.h Argument Clinic now emits includes for pycore_fileutils.h and pycore_long.h when these functions are used. | ||||
* | gh-96670: Raise SyntaxError when parsing NULL bytes (#97594) | Pablo Galindo Salgado | 2022-09-27 | 1 | -0/+1 |
| | |||||
* | bpo-41986: Add Py_FileSystemDefaultEncodeErrors and Py_UTF8Mode back to ↵ | Serhiy Storchaka | 2020-10-10 | 1 | -8/+0 |
| | | | | limited API (GH-22621) | ||||
* | bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for ↵ | Serhiy Storchaka | 2020-10-09 | 1 | -0/+2 |
| | | | | "fildes". (GH-22620) | ||||
* | bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h ↵ | Skip Montanaro | 2020-06-01 | 1 | -8/+0 |
| | | | | (GH-18413) | ||||
* | bpo-36842: Implement PEP 578 (GH-12613) | Steve Dower | 2019-05-23 | 1 | -0/+32 |
Adds sys.audit, sys.addaudithook, io.open_code, and associated C APIs. |