Return a unique id for the given font and character-code set.
(self, font, ccode)
| 52 | return LOAD_NO_HINTING |
| 53 | |
| 54 | def _get_char_id(self, font, ccode): |
| 55 | """ |
| 56 | Return a unique id for the given font and character-code set. |
| 57 | """ |
| 58 | return urllib.parse.quote('{}-{}'.format(font.postscript_name, ccode)) |
| 59 | |
| 60 | def _get_char_id_ps(self, font, ccode): |
| 61 | """ |
no test coverage detected