Home
last modified time | relevance | path

Searched refs:PyOS_ReadlineFunctionPointer (Results 1 – 10 of 10) sorted by relevance

/third_party/python/Parser/
Dmyreadline.c349 char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *) = NULL; variable
368 if (PyOS_ReadlineFunctionPointer == NULL) { in PyOS_Readline()
369 PyOS_ReadlineFunctionPointer = PyOS_StdioReadline; in PyOS_Readline()
392 rv = (*PyOS_ReadlineFunctionPointer)(sys_stdin, sys_stdout, in PyOS_Readline()
/third_party/python/Include/cpython/
Dpythonrun.h121 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
/third_party/python/Modules/
Dreadline.c1503 PyOS_ReadlineFunctionPointer = call_readline; in PyInit_readline()
/third_party/python/Doc/faq/
Dextending.rst271 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
/third_party/python/Doc/c-api/
Dveryhigh.rst171 .. c:var:: char* (*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *)
/third_party/python/Tools/c-analyzer/cpython/
Dglobals-to-fix.tsv438 Parser/myreadline.c - PyOS_ReadlineFunctionPointer -
/third_party/python/Doc/whatsnew/
D3.10.rst2269 * Remove :c:func:`PyOS_ReadlineFunctionPointer` from the limited C API headers
D3.4.rst2504 * The result of the :c:data:`PyOS_ReadlineFunctionPointer` callback must
/third_party/python/Misc/
DHISTORY3715 - Issue #16742: The result of the C callback PyOS_ReadlineFunctionPointer must
28773 the call to the function pointed to by PyOS_ReadlineFunctionPointer
31205 PyOS_ReadlineFunctionPointer. (Code contributed by Lee Busby, with
DNEWS8855 - bpo-43868: :c:func:`PyOS_ReadlineFunctionPointer` is no longer exported by