[Python-checkins] python/dist/src/Lib/plat-mac aetypes.py,1.3,1.4

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Fri, 21 Mar 2003 04:04:21 -0800


Update of /cvsroot/python/python/dist/src/Lib/plat-mac
In directory sc8-pr-cvs1:/tmp/cvs-serv20157/Lib/plat-mac

Modified Files:
	aetypes.py 
Log Message:
Patch 702620 by Donovan Preston: Fix AE inheritance.


Index: aetypes.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/aetypes.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** aetypes.py	12 Feb 2003 15:37:25 -0000	1.3
--- aetypes.py	21 Mar 2003 12:04:18 -0000	1.4
***************
*** 503,511 ****
  	# Also, dictionaries _propdict and _elemdict must be set to map property
  	# and element names to the correct classes
! 	
  	def __init__(self, which, fr = None):
  		SelectableItem.__init__(self, self.want, which, fr)
- 		self._propdict = {}
- 		self._elemdict = {}
  	
  	def __repr__(self):
--- 503,511 ----
  	# 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)
  	
  	def __repr__(self):