Coverage for pdfrw/pdfrw/objects/__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

8 statements  

1# A part of pdfrw (https://github.com/pmaupin/pdfrw) 

2# Copyright (C) 2006-2015 Patrick Maupin, Austin, Texas 

3# MIT license -- See LICENSE.txt for details 

4 

5''' 

6Objects that can occur in PDF files. The most important 

7objects are arrays and dicts. Either of these can be 

8indirect or not, and dicts could have an associated 

9stream. 

10''' 

11from .pdfname import PdfName 

12from .pdfdict import PdfDict, IndirectPdfDict 

13from .pdfarray import PdfArray 

14from .pdfobject import PdfObject 

15from .pdfstring import PdfString 

16from .pdfindirect import PdfIndirect 

17 

18__all__ = """PdfName PdfDict IndirectPdfDict PdfArray 

19 PdfObject PdfString PdfIndirect""".split()