Home
last modified time | relevance | path

Searched refs:my_fgets (Results 1 – 5 of 5) sorted by relevance

/external/python/cpython2/Parser/
Dmyreadline.c40 my_fgets(char *buf, int len, FILE *fp) in my_fgets() function
128 switch (my_fgets(p, (int)n, sys_stdin)) { in PyOS_StdioReadline()
149 if (my_fgets(p+n, (int)incr, sys_stdin) != 0) in PyOS_StdioReadline()
/external/python/cpython3/Parser/
Dmyreadline.c30 my_fgets(PyThreadState* tstate, char *buf, int len, FILE *fp) in my_fgets() function
320 int err = my_fgets(tstate, p + n, (int)incr, sys_stdin); in PyOS_StdioReadline()
/external/python/cpython2/Misc/NEWS.d/
D2.7a4.rst56 Remove an unnecessary 'for' loop from ``my_fgets()`` in Parser/myreadline.c.
D2.7.3rc1.rst233 my_fgets() now always clears errors before calling fgets(). Fix the
/external/python/cpython3/Misc/
DHISTORY8538 - Issue #1195: my_fgets() now always clears errors before calling fgets(). Fix