]> granicus.if.org Git - python/commit
Holistic refactoring.
authorJeremy Hylton <jeremy@alum.mit.edu>
Mon, 21 Apr 2003 22:04:46 +0000 (22:04 +0000)
committerJeremy Hylton <jeremy@alum.mit.edu>
Mon, 21 Apr 2003 22:04:46 +0000 (22:04 +0000)
commit38732e1065bdb9d37d481bfb25f10eab361a7bc0
tree9cc2173c5aa2e253fc8d26c9cde720c982fe37a8
parentfbbe34789e62725cac074a188826e53d8cc95e16
Holistic refactoring.

Remove "." in coverage output for lines with comments.
Silence complaints in coverage output about unexecuted docstrings.

Eliminate use of inspect module in favor of direct access to frame and
code objects.  We're in a trace function here:  Efficiency counts!

Remove unused code.  Reflow long lines.

Remove backwards compatibility for stored trace output from Zooko's
experiment to add calledfuncs to the pickled dict.

Move code to generate per-file coverage stats to a separate routine.

Replace use of parser module with call to compile.
Lib/trace.py