return a dict of the line numbers from executable statements in a file
Works by finding all of the code-like objects in the module then searching
the byte code for 'SET_LINENO' terms (so this won't work one -O files).
Definition at line 132 of file coverage.py.
133 """return a dict of the line numbers from executable statements in a file
135 Works by finding all of the code-like objects in the module then searching
136 the byte code for 'SET_LINENO' terms (so this won't work one -O files).
141 code = compile (prog, filename,
'exec')