Searched refs:PyOS_ReadlineFunctionPointer (Results 1 – 10 of 10) sorted by relevance
349 char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *) = NULL; variable368 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()
121 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
1503 PyOS_ReadlineFunctionPointer = call_readline; in PyInit_readline()
271 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
171 .. c:var:: char* (*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *)
438 Parser/myreadline.c - PyOS_ReadlineFunctionPointer -
2269 * Remove :c:func:`PyOS_ReadlineFunctionPointer` from the limited C API headers
2504 * The result of the :c:data:`PyOS_ReadlineFunctionPointer` callback must
3715 - Issue #16742: The result of the C callback PyOS_ReadlineFunctionPointer must28773 the call to the function pointed to by PyOS_ReadlineFunctionPointer31205 PyOS_ReadlineFunctionPointer. (Code contributed by Lee Busby, with
8855 - bpo-43868: :c:func:`PyOS_ReadlineFunctionPointer` is no longer exported by