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
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
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
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