-
Notifications
You must be signed in to change notification settings - Fork 511
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adresses issue #4004. Calling CheckParent should raise ReferenceError, respetively ValueError if an objects parent is no longer available.
- Loading branch information
Showing
2 changed files
with
24 additions
and
2 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
import pymupdf | ||
|
||
|
||
def test_parent(): | ||
"""Test invalidating parent on page re-assignment.""" | ||
doc = pymupdf.open() | ||
page = doc.new_page() | ||
a = page.add_highlight_annot(page.rect) # insert annotation on page 0 | ||
page = doc.new_page() # make a new page, should orphanate annotation | ||
try: | ||
print(a) # should raise | ||
error = False | ||
except ValueError as e: | ||
assert str(e) == "orphaned object: parent is dead" | ||
error = True | ||
assert error |