Results 963 comments of Ned Batchelder

*Original comment by* **David Multer (Bitbucket: [dmulter](https://bitbucket.org/dmulter), GitHub: [dmulter](https://github.com/dmulter))** ---------------------------------------- I'm seeing the same thing. Not only is the source file reference ambiguous, it has also broken my use of...

*Original comment by* **Michal Karzynski (Bitbucket: [postrational](https://bitbucket.org/postrational), GitHub: [postrational](https://github.com/postrational))** ---------------------------------------- If we have 2 files like this: * `/path/to/directory_one/__init__.py` * `/path/to/directory_two/__init__.py` Then they would both get a like like this:...

This was a bug that was fixed. The filename attribute should be combinable with a source entry to find the file. Can you tell me more about why you need...

Thanks for the report. Can you give me steps to reproduce the problem? Also, I'm curious how you got the compressed stack trace you show at the end?

Hi, never mind about the stack trace, that's my own code doing that! :) Can you try version 6.3.1 and see if it helps? If not, try to avoid using...

Thanks, this is unusual. I see what you mean about sys_modules_saved, and you are right: excluding `multiprocessing.resource_tracker` from deletion in `SysModuleSaver.restore` clears up the problem. But I'm reluctant to hard-code...

This was the patch I tried: ``` diff --git a/coverage/misc.py b/coverage/misc.py index aaf1bcf7..549d5c22 100644 --- a/coverage/misc.py +++ b/coverage/misc.py @@ -48,6 +48,9 @@ def isolate_module(mod): os = isolate_module(os) +# Modules with...

Hi, thanks for checking in! I'm curious what your own itch was? :) I typically don't change coverage just to bring the code into more current idioms. For example, I...

Can you say more about what you want this to do? What would the user experience be?

Thanks, that makes it clear. I'm not sure how this would help for your second case ("starting to do unit tests in a big project"): coverage would fail for a...