mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Cleanup in packaging: super considered super
This commit is contained in:
parent
d139b99426
commit
8022314fc2
8 changed files with 15 additions and 16 deletions
|
@ -35,7 +35,7 @@ class PyDialog(Dialog):
|
|||
def __init__(self, *args, **kw):
|
||||
"""Dialog(database, name, x, y, w, h, attributes, title, first,
|
||||
default, cancel, bitmap=true)"""
|
||||
Dialog.__init__(self, *args)
|
||||
super(PyDialog, self).__init__(*args)
|
||||
ruler = self.h - 36
|
||||
#if kw.get("bitmap", True):
|
||||
# self.bitmap("Bitmap", 0, 0, bmwidth, ruler, "PythonWin")
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue