Be more lenient with try/except in _showwarning#452
Closed
bozdoz wants to merge 4 commits intopy-pdf:masterfrom
bozdoz:patch-1
Closed
Be more lenient with try/except in _showwarning#452bozdoz wants to merge 4 commits intopy-pdf:masterfrom bozdoz:patch-1
bozdoz wants to merge 4 commits intopy-pdf:masterfrom
bozdoz:patch-1
Conversation
Was getting an IndexError from the `formatWarning` function. Alternatively, you could alter that function to check for values before trying to get a value from an index.
Author
|
Related to #67 |
|
@bozdoz: May I suggest to use |
Author
|
@moser done |
mlissner
added a commit
to freelawproject/courtlistener
that referenced
this pull request
Mar 23, 2022
In the following issues and PRs, PyPDF2 users have identified and offered to fix a weird bug where the library overrides normal logging in a way that breaks when you log certain things: py-pdf/pypdf#67 py-pdf/pypdf#641 py-pdf/pypdf#452 py-pdf/pypdf#243 Not great, but there was probably a reason. Unfortunately, the maintainers aren't merging any of the fixes people have provided over the years, and when I upgraded to Python 3.10 one of our tests changed in a way that it triggered this bug. So, since the maintainers don't seem inclined to fix their own package, this commit yanks it from CourtListener. It's good timing, really, since we now have the microservice available, but it was disappointing to see bugs and PRs related to this going back to 2014. Most of the fixes are one or two-line PRs too. Bummer.
MartinThoma
reviewed
Apr 10, 2022
Member
|
That issue was fixed via https://github.com/py-pdf/PyPDF2/pull/612/files |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Was getting an IndexError from the
formatWarningfunction. Alternatively, you could alter that function to check for values before trying to get a value from an index.