| Conditions | 3 |
| Total Lines | 10 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | from sys import version_info |
||
| 13 | def __init__(self, *args, **kwargs): |
||
| 14 | super(CustomFrame, self).__init__(*args, **kwargs) |
||
| 15 | self.bind("<Configure>", self.configure) |
||
| 16 | self.drawn = [] |
||
| 17 | self.height = 0 |
||
| 18 | self.width = 0 |
||
| 19 | if "height" in kwargs: |
||
| 20 | self.height = kwargs["height"] |
||
| 21 | if "width" in kwargs: |
||
| 22 | self.width = kwargs["width"] |
||
| 23 | |||
| 47 |