-
-
Notifications
You must be signed in to change notification settings - Fork 30.5k
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
[coverage] codeobject.c: _PyCode_CreateLineArray #94814
Labels
type-bug
An unexpected behavior, bug, or error
Comments
I can't self-assign, but FYI I'm working on this. |
mdboom
added a commit
to mdboom/cpython
that referenced
this issue
Jul 14, 2022
The case where there are more than (1 << 15) lines was not covered
miss-islington
pushed a commit
to miss-islington/cpython
that referenced
this issue
Jul 15, 2022
…-94852) The case where there are more than (1 << 15) lines was not covered. I don't know if increasing test coverage requires a blurb -- let me know if it does. Automerge-Triggered-By: GH:brandtbucher (cherry picked from commit 582ae86) Co-authored-by: Michael Droettboom <[email protected]>
miss-islington
pushed a commit
that referenced
this issue
Jul 15, 2022
The case where there are more than (1 << 15) lines was not covered. I don't know if increasing test coverage requires a blurb -- let me know if it does. Automerge-Triggered-By: GH:brandtbucher
miss-islington
added a commit
that referenced
this issue
Jul 15, 2022
The case where there are more than (1 << 15) lines was not covered. I don't know if increasing test coverage requires a blurb -- let me know if it does. Automerge-Triggered-By: GH:brandtbucher (cherry picked from commit 582ae86) Co-authored-by: Michael Droettboom <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In _PyCode_CreateLineArray, the code path where there are greater than 2**16 lines doesn't seem to be exercised.
The text was updated successfully, but these errors were encountered: