Coverage for /pythoncovmergedfiles/medio/medio/usr/local/lib/python3.11/site-packages/pypdf/actions/__init__.py: 100%

Shortcuts on this page

r m x   toggle line displays

j k   next/prev highlighted chunk

0   (zero) top of page

1   (one) first highlighted chunk

3 statements  

1""" 

2PDF includes a wide variety of standard action types, whose characteristics and 

3behaviour are defined by an action dictionary. These are defined in this 

4submodule. 

5 

6Trigger events are the other component of actions, and are specific to their 

7associated object. 

8""" 

9 

10 

11from ._actions import Action, JavaScript, PageTrigger 

12 

13__all__ = [ 

14 "Action", 

15 "JavaScript", 

16 "PageTrigger", 

17]