Home
last modified time | relevance | path

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

/external/python/cpython2/Include/
Derrcode.h17 #define E_EOF 11 /* End Of File */ macro
/external/python/cpython2/Parser/
Dparsetok.c221 if (tok->lineno <= 1 && tok->done == E_EOF) in parsetok()
222 err_ret->error = E_EOF; in parsetok()
Dtokenizer.c872 tok->done = E_EOF; in tok_nextc()
891 tok->done = E_EOF; in tok_nextc()
948 tok->done = E_EOF; in tok_nextc()
960 tok->done = E_EOF; in tok_nextc()
1364 return tok->done == E_EOF ? ENDMARKER : ERRORTOKEN; in tok_get()
/external/python/cpython2/Doc/faq/
Dextending.rst289 equal to ``E_EOF``, which means the input is incomplete). Here's a sample code
309 if (e.error == E_EOF)
397 } /* syntax error or E_EOF? */
403 !strcmp (msg, "unexpected EOF while parsing")) /* E_EOF */
/external/python/cpython2/Python/
Dpythonrun.c779 if (ret == E_EOF) in PyRun_InteractiveLoopFlags()
844 if (errcode == E_EOF) { in PyRun_InteractiveOneFlags()
846 return E_EOF; in PyRun_InteractiveOneFlags()
1614 case E_EOF: in err_input()