MCPcopy Index your code
hub / github.com/clips/pattern / get_encoding

Method get_encoding

pattern/web/pdf/pdffont.py:94–104  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

92 return
93
94 def get_encoding(self):
95 while 1:
96 try:
97 (cid,name) = self.nextobject()
98 except PSEOF:
99 break
100 try:
101 self._cid2unicode[cid] = name2unicode(name)
102 except KeyError:
103 pass
104 return self._cid2unicode
105
106 def do_keyword(self, pos, token):
107 if token is self.KEYWORD_PUT:

Callers 2

__init__Method · 0.95
__init__Method · 0.45

Calls 2

name2unicodeFunction · 0.90
nextobjectMethod · 0.80

Tested by

no test coverage detected