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)
| 1712 | # These used to be defined in Widget: |
| 1713 | |
| 1714 | def configure(self, cnf=None, **kw): |
| 1715 | """Configure resources of a widget. |
| 1716 | |
| 1717 | The values for resources are specified as keyword |
| 1718 | arguments. To get an overview about |
| 1719 | the allowed keyword arguments call the method keys. |
| 1720 | """ |
| 1721 | return self._configure('configure', cnf, kw) |
| 1722 | |
| 1723 | config = configure |
| 1724 |
no test coverage detected