-
Notifications
You must be signed in to change notification settings - Fork 1.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
Assertion fails when adding metadata after cloning document root #3036
Comments
Thanks for the report. Is there any reason for using this specific code in your case instead of using |
We're currently using |
@juwu-odoo |
Yes, both Line 1244 in c6dcdc6
Though I'll have to test our specific usecase more to make sure the extra metadata doesn't interfere. Are you saying this is intended behavior and we should use this function instead? |
|
While there might be older versions in the OS repositories and you want to support them, we offer no support for them anymore. I personally would never use these old versions in production as in the meantime there have been tons of fixes and enhancements. As for the current regression, this is not intended, although I am not sure whether |
Yes, we know and don't expect such, I'm just explaining why
Thanks. Would having One point of note, it might be a good idea to review uses of |
The |
The `assert isinstance` hid the information that `_info` is optional, and `add_metadata` may try to add metadata to an `_info` which is completely missing. Properly initialise `_info` if it's not set. Fixes py-pdf#3036
The `assert isinstance` hid the information that `_info` is `Optional`, in which case `add_metadata` would raise an assertion error. Properly initialise `_info` if it's not set. Fixes py-pdf#3036
What Happened?
Hello, we are using pypdf at Odoo to generate pdf invoices, but we've been encountering an error when using the latest versions when attempting to run
add_metadata()
afterclone_reader_document_root()
which seems to be a bug.Please see a reference discussion here: odoo/odoo#185673
Environment
Happens with
pypdf==5.0.0
as well.Code + PDF
PDF file: INV_2025_00010.pdf
Traceback
Notes
pypdf 5.0.0 introduced a line in clone_reader_document_root which deletes
_info_obj
from the writer:a790532#diff-a0fbeffe546f1499bac6a87052eb32cf536be2731684405ef6bb0266a6a4da5dR1202
An assertion then fails when later adding metadata, causing the traceback since
self._info = None
:pypdf/pypdf/_writer.py
Line 1610 in c6dcdc6
@xmo-odoo and I's best guess is that
add_metadata()
should have been updated to handle a possibleself._info = None
(and/or initialize it) with the change introduced in 5.0.0.The text was updated successfully, but these errors were encountered: