Exemplo n.º 1
0
 def seek(self, pos):
     self.fillfp()
     PSStackParser.seek(self, pos)
     return
Exemplo n.º 2
0
 def __init__(self, streams):
     self.streams = streams
     self.istream = 0
     PSStackParser.__init__(self, None)
     return
Exemplo n.º 3
0
 def __init__(self, fp):
     PSStackParser.__init__(self, fp)
     self.doc = None
     self.fallback = False
     return
Exemplo n.º 4
0
 def __init__(self, data):
     PSStackParser.__init__(self, data)
     self._cid2unicode = {}
     return
Exemplo n.º 5
0
 def __init__(self, cmap, fp):
     PSStackParser.__init__(self, fp)
     self.cmap = cmap
     self._in_cmap = False
     return