Configure resources of a widget. The values for resources are specified as keyword arguments. To get an overview about the allowed keyword arguments call the method keys.
(self, cnf=None, **kw)
| 1813 | # These used to be defined in Widget: |
| 1814 | |
| 1815 | def configure(self, cnf=None, **kw): |
| 1816 | """Configure resources of a widget. |
| 1817 | |
| 1818 | The values for resources are specified as keyword |
| 1819 | arguments. To get an overview about |
| 1820 | the allowed keyword arguments call the method keys. |
| 1821 | """ |
| 1822 | return self._configure('configure', cnf, kw) |
| 1823 | |
| 1824 | config = configure |
| 1825 |
no test coverage detected