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

Class PyUnicodeMap

pattern/web/pdf/cmapdb.py:213–225  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

211## PyUnicodeMap
212##
213class PyUnicodeMap(UnicodeMap):
214
215 def __init__(self, name, module, vertical):
216 if vertical:
217 cid2unichr = module.CID2UNICHR_V
218 else:
219 cid2unichr = module.CID2UNICHR_H
220 UnicodeMap.__init__(self, cid2unichr)
221 self.name = name
222 return
223
224 def __repr__(self):
225 return '<PyUnicodeMap: %s>' % (self.name)
226
227
228## CMapDB

Callers 1

get_unicode_mapMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…