ipdoctest must handle simple inputs In [1]: 1 Out[1]: 1 In [2]: print(1) 1
()
| 8 | """ |
| 9 | |
| 10 | def doctest_simple(): |
| 11 | """ipdoctest must handle simple inputs |
| 12 | |
| 13 | In [1]: 1 |
| 14 | Out[1]: 1 |
| 15 | |
| 16 | In [2]: print(1) |
| 17 | 1 |
| 18 | """ |
| 19 | |
| 20 | def doctest_multiline1(): |
| 21 | """The ipdoctest machinery must handle multiline examples gracefully. |
nothing calls this directly
no outgoing calls
no test coverage detected