-
-
Notifications
You must be signed in to change notification settings - Fork 441
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
KeyError: sub.py #340
Comments
Original comment by Buck Evan (Bitbucket: bukzor, GitHub: bukzor) I've said this elsewhere, but not noted it here: This problem stems from a hackitty virtualenv workaround to a poorly-written ubuntu patchset.
The problematic bit of the ubuntu patch is gone in the newest ubuntu (trusty), but the venv workaround remains, causing this issue. |
What's the latest on this? Do you think it needs to be solved? |
Original comment by Buck Evan (Bitbucket: bukzor, GitHub: bukzor) I've repeatedly run into this on ubuntu systems when using the stock python. It's quite annoying and extremely confusing. The idempotency/last-wins fixes proposed above would work, and might be simple enough to implement. I haven't looked. |
@bukzor Thanks for the analysis, it was spot on. This is fixed in 9fd110c4bba0 (bb). |
Originally reported by Buck Evan (Bitbucket: bukzor, GitHub: bukzor)
This reproduces when using the ubuntu 2.7 from precise forward.
You can reproduce the scenario with:
The essential cause is that site.py is seeing and executing
subcover.py
twice because of the symlink, first for local/lib/ then for lib/.I don't quite follow the part in between, but the result is that only the data from the first trace persists, meaning we don't get the data we want. Presumably the trace of sub.py is written first, then the earlier trace data written on top of it.
The essential problem is that if a single process calls process_startup() twice, data is lost.
Worse, data generated by the second call is clobbered by data from the first.
I believe the fix would be to make coverage process_startup() idempotent.
Failing that, ensuring a last-one-wins behavior would also produce desirable behavior in this case.
@nedbat: How would you go about solving this problem?
(Most of this information copied from an older ticket centered on another topic: issue #337)
The text was updated successfully, but these errors were encountered: