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
()
| 60 | |
| 61 | @ipdoctest |
| 62 | def ipdt_flush(): |
| 63 | """ |
| 64 | In [20]: print(1) |
| 65 | 1 |
| 66 | |
| 67 | In [26]: for i in range(4): |
| 68 | ....: print(i) |
| 69 | ....: |
| 70 | ....: |
| 71 | 0 |
| 72 | 1 |
| 73 | 2 |
| 74 | 3 |
| 75 | |
| 76 | In [27]: 3+4 |
| 77 | Out[27]: 7 |
| 78 | """ |
| 79 | |
| 80 | |
| 81 | @ipdoctest |
nothing calls this directly
no outgoing calls
no test coverage detected