Some pure python tests... >>> pyfunc() 'pyfunc' >>> import os >>> 2+3 5 >>> for i in range(3): ... print(i, end=' ') ... print(i+1, end=' ') ... 0 1 1 2 2 3
()
| 5 | """ |
| 6 | |
| 7 | def pyfunc(): |
| 8 | """Some pure python tests... |
| 9 | |
| 10 | >>> pyfunc() |
| 11 | 'pyfunc' |
| 12 | |
| 13 | >>> import os |
| 14 | |
| 15 | >>> 2+3 |
| 16 | 5 |
| 17 | |
| 18 | >>> for i in range(3): |
| 19 | ... print(i, end=' ') |
| 20 | ... print(i+1, end=' ') |
| 21 | ... |
| 22 | 0 1 1 2 2 3 |
| 23 | """ |
| 24 | return 'pyfunc' |
| 25 | |
| 26 | |
| 27 | def ipyfunc2(): |
nothing calls this directly
no outgoing calls
no test coverage detected