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
(self)
| 107 | |
| 108 | @ipdocstring |
| 109 | def ipdt_method(self): |
| 110 | """ |
| 111 | In [20]: print(1) |
| 112 | 1 |
| 113 | |
| 114 | In [26]: for i in range(4): |
| 115 | ....: print(i) |
| 116 | ....: |
| 117 | ....: |
| 118 | 0 |
| 119 | 1 |
| 120 | 2 |
| 121 | 3 |
| 122 | |
| 123 | In [27]: 3+4 |
| 124 | Out[27]: 7 |
| 125 | """ |
| 126 | |
| 127 | def normaldt_method(self): |
| 128 | """ |
nothing calls this directly
no outgoing calls
no test coverage detected