summaryrefslogtreecommitdiffstats
path: root/Include/cpython/fileobject.h
Commit message (Collapse)AuthorAgeFilesLines
* gh-106320: Remove private _Py_UniversalNewlineFgetsWithSize() (#108602)Victor Stinner2023-08-291-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 Stinner2023-08-261-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 Salgado2022-09-271-0/+1
|
* bpo-41986: Add Py_FileSystemDefaultEncodeErrors and Py_UTF8Mode back to ↵Serhiy Storchaka2020-10-101-8/+0
| | | | limited API (GH-22621)
* bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for ↵Serhiy Storchaka2020-10-091-0/+2
| | | | "fildes". (GH-22620)
* bpo-39583: Remove superfluous "extern C" bits from Include/cpython/*.h ↵Skip Montanaro2020-06-011-8/+0
| | | | (GH-18413)
* bpo-36842: Implement PEP 578 (GH-12613)Steve Dower2019-05-231-0/+32
Adds sys.audit, sys.addaudithook, io.open_code, and associated C APIs.