Results 963 comments of Ned Batchelder

@freakboy3742 thanks for sticking with me on this. I don't understand why the debug output isn't appearing in the combine step. Can you make it `--debug=sys,config,pathmap`, and we'll get some...

@freakboy3742 I don't understand why there's no output from the combine step. I've added a more distinctive version marker to the branch. Can you try running with nedbat/bug991 again?

I'm marking this as fixed as of commit 7df8609f.

@adamchainz @ikonst I can definitely reproduce what you are seeing. I don't understand yet why it's a difference between 5.5 and 5.6b1, since the specific code involved in analyzing those...

For completeness, git bisect says 3cd4db3248fe48c3a531855227a9b2a3846e0110 is when this behavior started.

I added some quick verbose debugging in branch nedbat/debug-1373. Install it like this: ``` pip install git+https://github.com/nedbat/coveragepy@nedbat/debug-1373 ``` then /tmp/coverage_pth_files.txt has details.

Hi, sorry I've let this wait for so long. Can you tell me more about your arrangement? Can you link to your repo? What would your custom file mapper do...

Feel free to re-open this if you get more information.

I tried reproducing the problem with simpler code that didn't involve Django, but a similar structure: test_code.py: ```python class Response: @property def status(self): return 17 def test_it(): response = Response()...

I can reproduce this with: ``` git clone https://github.com/DylanYoung/django-csp cd django-csp git checkout GH-36 pip install tox tox -e pypy3.9-main ``` But there is a lot of stuff going on...