Skip to content

Commit

Permalink
DOC: Added that threads can now contain a metadata stream
Browse files Browse the repository at this point in the history
Also some very small changes including changing references to be from ISO 32000.
  • Loading branch information
j-t-1 authored Jun 9, 2024
1 parent 2e029fd commit 7b35df3
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions pypdf/_doc_common.py
Original file line number Diff line number Diff line change
Expand Up @@ -1006,13 +1006,13 @@ def pages(self) -> List[PageObject]:
Property that emulates a list of :class:`PageObject<pypdf._page.PageObject>`.
This property allows to get a page or a range of pages.
.. note::
For PdfWriter only: Provides the capability to remove a page/range of
page from the list (using the del operator). Remember: Only the page
entry is removed, as the objects beneath can be used elsewhere. A
solution to completely remove them - if they are not used anywhere - is
to write to a buffer/temporary file and then load it into a new
PdfWriter.
Note:
For PdfWriter only: Provides the capability to remove a page/range of
page from the list (using the del operator). Remember: Only the page
entry is removed, as the objects beneath can be used elsewhere. A
solution to completely remove them - if they are not used anywhere - is
to write to a buffer/temporary file and then load it into a new
PdfWriter.
"""
return _VirtualList(self.get_num_pages, self.get_page) # type: ignore
Expand Down

0 comments on commit 7b35df3

Please sign in to comment.