Searched refs:PyOS_ReadlineFunctionPointer (Results 1 – 10 of 10) sorted by relevance
348 char *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *) = NULL; variable367 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()
121 PyAPI_DATA(char) *(*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *);
1501 PyOS_ReadlineFunctionPointer = call_readline; in PyInit_readline()
272 you. You can also set the :c:func:`PyOS_ReadlineFunctionPointer` to point at your
169 .. c:var:: char* (*PyOS_ReadlineFunctionPointer)(FILE *, FILE *, const char *)
1782 :c:func:`PyOS_ReadlineFunctionPointer` is no longer exported by limited C
2269 * Remove :c:func:`PyOS_ReadlineFunctionPointer` from the limited C API headers
2504 * The result of the :c:data:`PyOS_ReadlineFunctionPointer` callback must
2906 Parser/myreadline.c - PyOS_ReadlineFunctionPointer -
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