Return list of single character lengths for a string.
(x)
| 16883 | ) # abbreviation |
| 16884 | |
| 16885 | def char_lengths(x): |
| 16886 | """Return list of single character lengths for a string.""" |
| 16887 | return font.char_lengths(x, fontsize=fontsize, small_caps=small_caps) |
| 16888 | |
| 16889 | def append_this(pos, text): |
| 16890 | ret = writer.append( |
nothing calls this directly
no test coverage detected