Lines Matching +refs:is +refs:completion +refs:line
25 The primary entry point is a :term:`generator`:
32 :ref:`bltin-file-objects`). Each call to the function should return one line
34 signals completion by raising :exc:`StopIteration`.
40 line on which the token was found. The line passed (the last tuple item) is
41 the *logical* line; continuation lines are included.
45 An older entry point is retained for backward compatibility:
56 line of input as a string. Alternately, *readline* may be a callable object that
57 signals completion by raising :exc:`StopIteration`.
62 The second parameter, *tokeneater*, must also be a callable object. It is
79 indicates the end of a logical line of Python code; NL tokens are generated when
80 a logical line of code is continued over multiple physical lines.
82 Another function is provided to reverse the tokenization process. This is useful
93 The reconstructed script is returned as a single string. The result is
94 guaranteed to tokenize back to match the input so that the conversion is
104 lines is not completed anywhere in the file, for example::