Home
last modified time | relevance | path

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

/third_party/python/Parser/
Dmyreadline.c348 char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *) = NULL; variable
367 if (PyOS_ReadlineFunctionPointer == NULL) { in PyOS_Readline()
368 PyOS_ReadlineFunctionPointer = PyOS_StdioReadline; in PyOS_Readline()
391 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.c1501 PyOS_ReadlineFunctionPointer = call_readline; in PyInit_readline()
/third_party/python/Doc/faq/
Dextending.rst272 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
/third_party/python/Doc/c-api/
Dveryhigh.rst169 .. c:var:: char* (*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *)
/third_party/python/Misc/NEWS.d/
D3.10.0b1.rst1782 :c:func:`PyOS_ReadlineFunctionPointer` is no longer exported by limited C
/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/Tools/c-analyzer/cpython/
Dignored.tsv2906 Parser/myreadline.c - PyOS_ReadlineFunctionPointer -
/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