In [20]: print(1) 1 In [26]: for i in range(4): ....: print(i) ....: ....: 0 1 2 3 In [27]: 3+4 Out[27]: 7
()
| 80 | |
| 81 | @ipdoctest |
| 82 | def ipdt_indented_test(): |
| 83 | """ |
| 84 | In [20]: print(1) |
| 85 | 1 |
| 86 | |
| 87 | In [26]: for i in range(4): |
| 88 | ....: print(i) |
| 89 | ....: |
| 90 | ....: |
| 91 | 0 |
| 92 | 1 |
| 93 | 2 |
| 94 | 3 |
| 95 | |
| 96 | In [27]: 3+4 |
| 97 | Out[27]: 7 |
| 98 | """ |
| 99 | |
| 100 | |
| 101 | class Foo(object): |
nothing calls this directly
no outgoing calls
no test coverage detected