(self)
| 117 | __iter__ = None # prevent using __getitem__ for iteration |
| 118 | |
| 119 | def __del__(self): |
| 120 | try: |
| 121 | if self.delete_font: |
| 122 | self._call("font", "delete", self.name) |
| 123 | except Exception: |
| 124 | pass |
| 125 | |
| 126 | def copy(self): |
| 127 | "Return a distinct copy of the current font" |