| 211 | ## PyUnicodeMap |
| 212 | ## |
| 213 | class 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 |
no outgoing calls
no test coverage detected
searching dependent graphs…