Home
last modified time | relevance | path

Searched refs:PyOS_Readline (Results 1 – 14 of 14) sorted by relevance

/external/python/cpython2/Parser/
Dmyreadline.c168 PyOS_Readline(FILE *sys_stdin, FILE *sys_stdout, char *prompt) in PyOS_Readline() function
Dpgenmain.c137 PyOS_Readline(FILE *sys_stdin, FILE *sys_stdout, char *prompt) in PyOS_Readline() function
Dtokenizer.c22 extern char *PyOS_Readline(FILE *, FILE *, char *);
884 char *newtok = PyOS_Readline(stdin, stdout, tok->prompt); in tok_nextc()
/external/python/cpython2/Include/
Dpythonrun.h150 PyAPI_FUNC(char *) PyOS_Readline(FILE *, FILE *, char *);
/external/python/cpython3/Include/
Dpythonrun.h191 PyAPI_FUNC(char *) PyOS_Readline(FILE *, FILE *, const char *);
/external/python/cpython2/PC/os2vacpp/
Dpython.def302 PyOS_Readline
/external/python/cpython3/Parser/
Dmyreadline.c356 PyOS_Readline(FILE *sys_stdin, FILE *sys_stdout, const char *prompt) in PyOS_Readline() function
Dtokenizer.c852 char *newtok = PyOS_Readline(stdin, stdout, tok->prompt); in tok_nextc()
/external/python/cpython3/Misc/NEWS.d/
D3.9.0b2.rst68 Fix GIL usage in :c:func:`PyOS_Readline`: lock the GIL to set an exception
/external/python/cpython2/PC/os2emx/
Dpython27.def84 "PyOS_Readline"
/external/python/cpython3/Python/
Dbltinmodule.c2062 s = PyOS_Readline(stdin, stdout, promptstr); in builtin_input_impl()
/external/python/cpython2/Python/
Dbltinmodule.c2072 s = PyOS_Readline(PyFile_AsFile(fin), PyFile_AsFile(fout), in builtin_raw_input()
/external/python/cpython3/Misc/
DHISTORY8364 error handler in interactive mode (when calling into PyOS_Readline()).
28771 - The calling context for PyOS_Readline() has changed: it must now be
/external/python/cpython2/Misc/
DHISTORY11392 - The calling context for PyOS_Readline() has changed: it must now be