We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a6c9d36 commit 6d8a18aCopy full SHA for 6d8a18a
pypdf/_writer.py
@@ -201,8 +201,13 @@ def __init__(
201
dict[id(pdf)][(idnum, generation)]
202
"""
203
204
- self._ID: Union[ArrayObject, None] = None
205
self._info_obj: Optional[PdfObject]
+ """The PDF files's document information dictionary,
206
+ the Info entry in the PDF file's trailer dictionary."""
207
+
208
+ self._ID: Union[ArrayObject, None] = None
209
+ """The PDF file identifier,
210
+ defined by the ID in the PDF file's trailer dictionary."""
211
212
if self.incremental:
213
if isinstance(fileobj, (str, Path)):
0 commit comments