This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author vstinner
Recipients nedbat, paul.moore, r.david.murray, steve.dower, tim.golden, vstinner, zach.ware
Date 2015-09-28.23:25:08
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1443482708.68.0.188950311621.issue25260@psf.upfronthosting.co.za>
In-reply-to
Content
Changes on ignoredirs:

Changeset 294f8aeb4d4b: "Implemented PEP 405 (Python virtual environments)."

-        tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix, libpath],
-                             trace=0, count=1)
+        tracer = trace.Trace(ignoredirs=[sys.base_prefix, sys.base_exec_prefix,
+                             libpath], trace=0, count=1)


Changeset b43f14c103bb: "#5656: detect correct encoding of files when reporting coverage in trace.py, and ignore files in the temporary direct"

-        import trace
-        tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix],
+        import trace, tempfile
+        tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix,
+                                         tempfile.gettempdir()],

Changeset 308c193f51e3: "adds -T option for code coverage.  The implementation is a fairly simpleminded adaptation of Zope3's test.py -T flag."

+        tracer = trace.Trace(ignoredirs=[sys.prefix, sys.exec_prefix],
+                             trace=False, count=True)
History
Date User Action Args
2015-09-28 23:25:08vstinnersetrecipients: + vstinner, paul.moore, nedbat, tim.golden, r.david.murray, zach.ware, steve.dower
2015-09-28 23:25:08vstinnersetmessageid: <1443482708.68.0.188950311621.issue25260@psf.upfronthosting.co.za>
2015-09-28 23:25:08vstinnerlinkissue25260 messages
2015-09-28 23:25:08vstinnercreate