Return a distinct copy of the current font
(self)
| 123 | pass |
| 124 | |
| 125 | def copy(self): |
| 126 | "Return a distinct copy of the current font" |
| 127 | return Font(self._tk, **self.actual()) |
| 128 | |
| 129 | def actual(self, option=None, displayof=None): |
| 130 | "Return actual font attributes" |
no test coverage detected