Home | History | Annotate | Download | only in library

Lines Matching full:interactive

3 :mod:`doctest` --- Test interactive Python examples
18 The :mod:`doctest` module searches for pieces of text that look like interactive
23 interactive examples still work as documented.
25 * To perform regression testing by verifying that interactive examples from a
196 Another simple application of doctest is testing interactive examples in a text
202 That short script executes and verifies any interactive Python examples
267 how it finds interactive examples, what execution context it uses, how it
303 In most cases a copy-and-paste of an interactive console session works fine,
350 * If you continue a line via backslashing in an interactive session, or for any
426 verbatim from an interactive session.
478 * The interactive shell omits the traceback header line for some
979 and runs the interactive examples in each file. If an example in any file
1131 the interactive examples extracted from doctest cases:
1144 contains interactive examples.
1186 A list of :class:`Example` objects encoding the individual interactive Python
1232 A single interactive example, consisting of a Python statement and its expected
1360 A processing class used to extract interactive examples from a string, and use
1400 A processing class used to execute and verify the interactive examples in a
1574 Then an interactive Python session may look like this::
1641 useful when you want to transform an interactive Python session into a Python
1815 * Write text files containing test cases as interactive examples, and test the