Given the name of a tk named font, returns a Font representation.
(name, root=None)
| 17 | |
| 18 | |
| 19 | def nametofont(name, root=None): |
| 20 | """Given the name of a tk named font, returns a Font representation. |
| 21 | """ |
| 22 | return Font(name=name, exists=True, root=root) |
| 23 | |
| 24 | |
| 25 | class Font: |
nothing calls this directly
no test coverage detected
searching dependent graphs…