(self, face)
| 830 | _tkExec(self.entry.config, font=self.font) |
| 831 | |
| 832 | def setFace(self, face): |
| 833 | if face in ['helvetica','arial','courier','times roman']: |
| 834 | self._setFontComponent(0, face) |
| 835 | else: |
| 836 | raise GraphicsError, BAD_OPTION |
| 837 | |
| 838 | def setSize(self, size): |
| 839 | if 5 <= size <= 36: |
nothing calls this directly
no test coverage detected