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

jackjansen@users.sourceforge.net jackjansen@users.sourceforge.net
Wed, 29 Jan 2003 02:39:21 -0800


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

Modified Files:
	aetypes.py 
Log Message:
Some objects could have uninitialized attributes. Fixed.

Index: aetypes.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/plat-mac/aetypes.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** aetypes.py	30 Dec 2002 22:04:20 -0000	1.1
--- aetypes.py	29 Jan 2003 10:39:19 -0000	1.2
***************
*** 522,525 ****
--- 522,527 ----
  	def __init__(self, which, fr = None):
  		SelectableItem.__init__(self, self.want, which, fr)
+ 		self._propdict = {}
+ 		self._elemdict = {}
  	
  	def __repr__(self):