diff options
author | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-21 12:04:19 (GMT) |
---|---|---|
committer | Jack Jansen <jack.jansen@cwi.nl> | 2003-03-21 12:04:19 (GMT) |
commit | 7e0bc112b8bc1174449f5573c03e51e00805218b (patch) | |
tree | 5b7bfcbe29cb015a763cdf6b4ea682fe8031d78e /Lib | |
parent | 82ad32ec394ef9e20a5073e0dad13436972b10fa (diff) | |
download | cpython-7e0bc112b8bc1174449f5573c03e51e00805218b.zip cpython-7e0bc112b8bc1174449f5573c03e51e00805218b.tar.gz cpython-7e0bc112b8bc1174449f5573c03e51e00805218b.tar.bz2 |
Patch 702620 by Donovan Preston: Fix AE inheritance.
Diffstat (limited to 'Lib')
-rw-r--r-- | Lib/plat-mac/aetypes.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Lib/plat-mac/aetypes.py b/Lib/plat-mac/aetypes.py index b091a28..e62e866 100644 --- a/Lib/plat-mac/aetypes.py +++ b/Lib/plat-mac/aetypes.py @@ -502,11 +502,11 @@ class ComponentItem(SelectableItem): # Derived classes *must* set the *class attribute* 'want' to some constant # Also, dictionaries _propdict and _elemdict must be set to map property # and element names to the correct classes - + + _propdict = {} + _elemdict = {} def __init__(self, which, fr = None): SelectableItem.__init__(self, self.want, which, fr) - self._propdict = {} - self._elemdict = {} def __repr__(self): if not self.fr: |