diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-10-09 20:00:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-09 20:00:45 (GMT) |
commit | 9975cc5008c795e069ce11e2dbed2110cc12e74e (patch) | |
tree | 87aca48f943cd04f0a3defe5f2666438efa959fa /Include/cpython | |
parent | b2c0a43699bd9023a69e3fa554f5488a2e17e278 (diff) | |
download | cpython-9975cc5008c795e069ce11e2dbed2110cc12e74e.zip cpython-9975cc5008c795e069ce11e2dbed2110cc12e74e.tar.gz cpython-9975cc5008c795e069ce11e2dbed2110cc12e74e.tar.bz2 |
bpo-41985: Add _PyLong_FileDescriptor_Converter and AC converter for "fildes". (GH-22620)
Diffstat (limited to 'Include/cpython')
-rw-r--r-- | Include/cpython/fileobject.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Include/cpython/fileobject.h b/Include/cpython/fileobject.h index 4f2408c..fb54cab 100644 --- a/Include/cpython/fileobject.h +++ b/Include/cpython/fileobject.h @@ -22,3 +22,5 @@ typedef PyObject * (*Py_OpenCodeHookFunction)(PyObject *, void *); PyAPI_FUNC(PyObject *) PyFile_OpenCode(const char *utf8path); PyAPI_FUNC(PyObject *) PyFile_OpenCodeObject(PyObject *path); PyAPI_FUNC(int) PyFile_SetOpenCodeHook(Py_OpenCodeHookFunction hook, void *userData); + +PyAPI_FUNC(int) _PyLong_FileDescriptor_Converter(PyObject *, void *); |