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

2 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 

6class PdfObject(str): 

7 ''' A PdfObject is a textual representation of any PDF file object 

8 other than an array, dict or string. It has an indirect attribute 

9 which defaults to False. 

10 ''' 

11 indirect = False