(self, size)
| 836 | raise GraphicsError, BAD_OPTION |
| 837 | |
| 838 | def setSize(self, size): |
| 839 | if 5 <= size <= 36: |
| 840 | self._setFontComponent(1,size) |
| 841 | else: |
| 842 | raise GraphicsError, BAD_OPTION |
| 843 | |
| 844 | def setStyle(self, style): |
| 845 | if style in ['bold','normal','italic', 'bold italic']: |
nothing calls this directly
no test coverage detected