This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import tkinter as tk | |
| from typing import Any, Callable, Literal, Self, overload | |
| __version__: str | |
| type FontFace = Literal["helvetica", "arial", "courier", "times roman"] | |
| type FontStyle = Literal["bold", "normal", "italic", "bold italic"] | |
| type Font = tuple[FontFace, float, FontStyle] | |
| class GraphicsError(Exception): ... |