()
| 45 | from linenum import LN |
| 46 | |
| 47 | def function(): |
| 48 | print LN() |
| 49 | print LN('print', 'me') |
| 50 | print LN('abc', name='AName') |
| 51 | print LN('When the name variable is of the form ' \ |
| 52 | 'package.module, normally, the top-level package', wrap=1) |
| 53 | |
| 54 | function() |
no test coverage detected