Lines Matching full:interactive
3 :mod:`doctest` --- Test interactive Python examples
14 The :mod:`doctest` module searches for pieces of text that look like interactive
19 interactive examples still work as documented.
21 * To perform regression testing by verifying that interactive examples from a
205 Another simple application of doctest is testing interactive examples in a text
211 That short script executes and verifies any interactive Python examples
277 how it finds interactive examples, what execution context it uses, how it
312 In most cases a copy-and-paste of an interactive console session works fine,
367 * If you continue a line via backslashing in an interactive session, or for any
443 verbatim from an interactive session.
498 * The interactive shell omits the traceback header line for some
1017 and runs the interactive examples in each file. If an example in any file
1186 the interactive examples extracted from doctest cases:
1199 contains interactive examples.
1242 A list of :class:`Example` objects encoding the individual interactive Python
1288 A single interactive example, consisting of a Python statement and its expected
1419 A processing class used to extract interactive examples from a string, and use
1460 A processing class used to execute and verify the interactive examples in a
1641 Then an interactive Python session may look like this::
1710 useful when you want to transform an interactive Python session into a Python
1894 * Write text files containing test cases as interactive examples, and test the