[Python-checkins] python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites AppleScript_Suite.py,1.2,1.2.20.1 Macintosh_Connectivity_Clas.py,1.1,1.1.20.1 QuickDraw_Graphics_Suite.py,1.1,1.1.20.1 QuickDraw_Graphics_Suppleme.py,1.1,1.1.20.1 Required_Suite.py,1.1,1.1.20.1 Standard_Suite.py,1.2,1.2.20.1 Table_Suite.py,1.2,1.2.20.1 Text_Suite.py,1.2,1.2.20.1 Type_Names_Suite.py,1.1,1.1.20.1 __init__.py,1.2,1.2.20.1

jackjansen@sourceforge.net jackjansen@sourceforge.net
Wed, 24 Apr 2002 02:21:50 -0700


Update of /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites
In directory usw-pr-cvs1:/tmp/cvs-serv19565/StdSuites

Modified Files:
      Tag: release22-maint
	AppleScript_Suite.py Macintosh_Connectivity_Clas.py 
	QuickDraw_Graphics_Suite.py QuickDraw_Graphics_Suppleme.py 
	Required_Suite.py Standard_Suite.py Table_Suite.py 
	Text_Suite.py Type_Names_Suite.py __init__.py 
Log Message:
Backport of trunk fix:
Second part of fix for #493826: regenerated suite modules so errn exists
but == 0 doesn't signal an error.

This also picked up a few other changes, but they should be harmless.



Index: AppleScript_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/AppleScript_Suite.py,v
retrieving revision 1.2
retrieving revision 1.2.20.1
diff -C2 -d -r1.2 -r1.2.20.1
*** AppleScript_Suite.py	17 May 2001 12:38:44 -0000	1.2
--- AppleScript_Suite.py	24 Apr 2002 09:21:47 -0000	1.2.20.1
***************
*** 2,6 ****
  Level 1, version 1
  
! Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
--- 2,6 ----
  Level 1, version 1
  
! Generated from Moes:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
***************
*** 26,30 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 26,30 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 46,50 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 46,50 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 65,69 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 65,69 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 84,88 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 84,88 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 104,108 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 104,108 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 123,127 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 123,127 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 142,146 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 142,146 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 161,165 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 161,165 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 192,196 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 192,196 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 272,276 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 272,276 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 293,297 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 293,297 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 306,310 ****
  		"""
  		_code = 'ascr'
! 		_subcode = '\255   '
  
  		if _arguments: raise TypeError, 'No optional args expected'
--- 306,310 ----
  		"""
  		_code = 'ascr'
! 		_subcode = '\xad   '
  
  		if _arguments: raise TypeError, 'No optional args expected'
***************
*** 314,318 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 314,318 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 335,339 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 335,339 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 356,360 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 356,360 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 377,381 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 377,381 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 398,402 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 398,402 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 419,423 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 419,423 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 440,444 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 440,444 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 461,465 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 461,465 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 482,486 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 482,486 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 503,507 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 503,507 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 524,528 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 524,528 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 545,549 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 545,549 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 566,570 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 566,570 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 587,591 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 587,591 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 608,612 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 608,612 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 629,633 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 629,633 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 650,654 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 650,654 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 671,675 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 671,675 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 692,696 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 692,696 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 713,717 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 713,717 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 734,738 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 734,738 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 786,790 ****
  	"""linked list - An ordered collection of items """
  	want = 'llst'
- # repeated property length the length of a list
  
  linked_lists = linked_list
--- 786,789 ----
***************
*** 793,797 ****
  	"""vector - An ordered collection of items """
  	want = 'vect'
- # repeated property length the length of a list
  
  vectors = vector
--- 792,795 ----
***************
*** 1883,1917 ****
  
  _Enum_ekst = {
! 	'escape_key' : 'ks5\000',	# 
! 	'delete_key' : 'ks3\000',	# 
! 	'tab_key' : 'ks0\000',	# 
! 	'return_key' : 'ks$\000',	# 
! 	'clear_key' : 'ksG\000',	# 
! 	'enter_key' : 'ksL\000',	# 
! 	'up_arrow_key' : 'ks~\000',	# 
! 	'down_arrow_key' : 'ks}\000',	# 
! 	'left_arrow_key' : 'ks{\000',	# 
! 	'right_arrow_key' : 'ks|\000',	# 
! 	'help_key' : 'ksr\000',	# 
! 	'home_key' : 'kss\000',	# 
! 	'page_up_key' : 'kst\000',	# 
! 	'page_down_key' : 'ksy\000',	# 
! 	'forward_del_key' : 'ksu\000',	# 
! 	'end_key' : 'ksw\000',	# 
! 	'F1_key' : 'ksz\000',	# 
! 	'F2_key' : 'ksx\000',	# 
! 	'F3_key' : 'ksc\000',	# 
! 	'F4_key' : 'ksv\000',	# 
! 	'F5_key' : 'ks`\000',	# 
! 	'F6_key' : 'ksa\000',	# 
! 	'F7_key' : 'ksb\000',	# 
! 	'F8_key' : 'ksd\000',	# 
! 	'F9_key' : 'kse\000',	# 
! 	'F10_key' : 'ksm\000',	# 
! 	'F11_key' : 'ksg\000',	# 
! 	'F12_key' : 'kso\000',	# 
! 	'F13_key' : 'ksi\000',	# 
! 	'F14_key' : 'ksk\000',	# 
! 	'F15_key' : 'ksq\000',	# 
  }
  
--- 1881,1915 ----
  
  _Enum_ekst = {
! 	'escape_key' : 'ks5\x00',	# 
! 	'delete_key' : 'ks3\x00',	# 
! 	'tab_key' : 'ks0\x00',	# 
! 	'return_key' : 'ks$\x00',	# 
! 	'clear_key' : 'ksG\x00',	# 
! 	'enter_key' : 'ksL\x00',	# 
! 	'up_arrow_key' : 'ks~\x00',	# 
! 	'down_arrow_key' : 'ks}\x00',	# 
! 	'left_arrow_key' : 'ks{\x00',	# 
! 	'right_arrow_key' : 'ks|\x00',	# 
! 	'help_key' : 'ksr\x00',	# 
! 	'home_key' : 'kss\x00',	# 
! 	'page_up_key' : 'kst\x00',	# 
! 	'page_down_key' : 'ksy\x00',	# 
! 	'forward_del_key' : 'ksu\x00',	# 
! 	'end_key' : 'ksw\x00',	# 
! 	'F1_key' : 'ksz\x00',	# 
! 	'F2_key' : 'ksx\x00',	# 
! 	'F3_key' : 'ksc\x00',	# 
! 	'F4_key' : 'ksv\x00',	# 
! 	'F5_key' : 'ks`\x00',	# 
! 	'F6_key' : 'ksa\x00',	# 
! 	'F7_key' : 'ksb\x00',	# 
! 	'F8_key' : 'ksd\x00',	# 
! 	'F9_key' : 'kse\x00',	# 
! 	'F10_key' : 'ksm\x00',	# 
! 	'F11_key' : 'ksg\x00',	# 
! 	'F12_key' : 'kso\x00',	# 
! 	'F13_key' : 'ksi\x00',	# 
! 	'F14_key' : 'ksk\x00',	# 
! 	'F15_key' : 'ksq\x00',	# 
  }
  
***************
*** 1921,2064 ****
  #
  _classdeclarations = {
  	'nmbr' : number,
! 	'ctxt' : text,
! 	'fss ' : file_specification,
! 	'sat ' : Saturday,
! 	'ccmt' : cubic_centimetres,
! 	'cfet' : cubic_feet,
! 	'lbs ' : pounds,
! 	'yard' : yards,
! 	'sqyd' : square_yards,
! 	'mach' : machine,
! 	'utxt' : Unicode_text,
! 	'cstr' : C_string,
! 	'rdat' : data,
! 	'doub' : real,
! 	'hand' : handler,
! 	'sutx' : styled_Unicode_text,
! 	'sqmi' : square_miles,
! 	'undf' : _empty_ae_name,
! 	'reco' : record,
! 	'cha ' : character,
! 	'cobj' : item,
! 	'kfrm' : reference_form,
! 	'enum' : constant,
! 	'inch' : inches,
! 	'sqrm' : square_metres,
! 	'bool' : boolean,
! 	'prop' : property,
! 	'****' : anything,
! 	'scpt' : script,
! 	'kgrm' : kilograms,
! 	'sep ' : September,
! 	'snd ' : sound,
! 	'mon ' : Monday,
! 	'capp' : app,
! 	'lr  ' : list_or_record,
! 	'fri ' : Friday,
! 	'cuin' : cubic_inches,
! 	'mar ' : March,
! 	'galn' : gallons,
! 	'encs' : encoded_string,
  	'litr' : litres,
! 	'case' : upper_case,
! 	'styl' : styled_Clipboard_text,
! 	'llst' : linked_list,
! 	'pcls' : _class,
! 	'jun ' : June,
! 	'ns  ' : number_or_string,
! 	'ozs ' : ounces,
! 	'mnth' : month,
! 	'metr' : metres,
! 	'jan ' : January,
  	'pstr' : Pascal_string,
! 	'alis' : alias,
! 	'gram' : grams,
! 	'msng' : missing_value,
! 	'qrts' : quarts,
! 	'nov ' : November,
! 	'list' : list,
! 	'sqft' : square_feet,
! 	'kmtr' : kilometres,
  	'cRGB' : RGB_color,
  	'itxt' : international_text,
  	'scnd' : seconds,
! 	'apr ' : April,
! 	'nd  ' : number_or_date,
! 	'wkdy' : weekday,
! 	'vect' : vector,
! 	'obj ' : reference,
! 	'sqkm' : square_kilometres,
! 	'dec ' : December,
! 	'wed ' : Wednesday,
! 	'cyrd' : cubic_yards,
! 	'vers' : version,
! 	'tue ' : Tuesday,
! 	'prep' : preposition,
! 	'type' : type_class,
! 	'citm' : text_item,
! 	'citl' : writing_code_info,
! 	'sf  ' : alias_or_string,
  	'degc' : degrees_Celsius,
! 	'long' : integer,
! 	'ls  ' : list_or_string,
! 	'PICT' : picture,
! 	'zone' : zone,
! 	'psct' : writing_code,
! 	'lrs ' : list_2c__record_or_text,
! 	'cmtr' : centimetres,
! 	'evnt' : event,
! 	'oct ' : October,
  	'degk' : degrees_Kelvin,
! 	'ldt ' : date,
  	'thu ' : Thursday,
! 	'degf' : degrees_Fahrenheit,
! 	'kprs' : keystroke,
! 	'mile' : miles,
! 	'feb ' : February,
! 	'feet' : feet,
! 	'nds ' : number_2c__date_or_text,
! 	'STXT' : styled_text,
! 	'cmet' : cubic_metres,
! 	'sun ' : Sunday,
! 	'aug ' : August,
! 	'may ' : May,
! 	'jul ' : July,
! 	'TEXT' : string,
  }
  
  _propdeclarations = {
! 	'pscd' : script_code,
! 	'rslt' : result,
! 	'pnam' : name,
! 	'time' : time,
! 	'txdl' : text_item_delimiters,
! 	'prln' : print_length,
! 	'prdp' : print_depth,
  	'kMod' : modifiers,
! 	'days' : days,
! 	'spac' : space,
! 	'kMsg' : key,
! 	'plcd' : language_code,
! 	'ret ' : _return,
! 	'tstr' : time_string,
  	'hour' : hours,
! 	'tab ' : tab,
! 	'rvse' : reverse,
  	'wkdy' : weekday,
- 	'day ' : day,
- 	'ID  ' : id,
- 	'c@#^' : _3c_Inheritance_3e_,
- 	'kknd' : key_kind,
- 	'ascr' : AppleScript,
- 	'rest' : rest,
  	'dstr' : date_string,
! 	'min ' : minutes,
! 	'pi  ' : pi,
! 	'leng' : length,
  	'year' : year,
! 	'pare' : parent,
! 	'mnth' : month,
! 	'week' : weeks,
  }
  
--- 1919,2062 ----
  #
  _classdeclarations = {
+ 	'jul ' : July,
+ 	'may ' : May,
+ 	'TEXT' : string,
+ 	'cmet' : cubic_metres,
+ 	'STXT' : styled_text,
+ 	'nds ' : number_2c__date_or_text,
+ 	'feet' : feet,
+ 	'feb ' : February,
  	'nmbr' : number,
! 	'mile' : miles,
! 	'kprs' : keystroke,
! 	'psct' : writing_code,
! 	'degf' : degrees_Fahrenheit,
! 	'lrs ' : list_2c__record_or_text,
! 	'ldt ' : date,
  	'litr' : litres,
! 	'nd  ' : number_or_date,
! 	'cmtr' : centimetres,
! 	'evnt' : event,
  	'pstr' : Pascal_string,
! 	'zone' : zone,
! 	'PICT' : picture,
! 	'ls  ' : list_or_string,
! 	'long' : integer,
! 	'sf  ' : alias_or_string,
! 	'citl' : writing_code_info,
! 	'citm' : text_item,
! 	'mach' : machine,
! 	'type' : type_class,
! 	'prep' : preposition,
! 	'tue ' : Tuesday,
! 	'case' : upper_case,
! 	'vers' : version,
! 	'wed ' : Wednesday,
! 	'dec ' : December,
! 	'sqkm' : square_kilometres,
! 	'obj ' : reference,
! 	'vect' : vector,
! 	'wkdy' : weekday,
  	'cRGB' : RGB_color,
+ 	'sun ' : Sunday,
  	'itxt' : international_text,
  	'scnd' : seconds,
! 	'mar ' : March,
! 	'kmtr' : kilometres,
! 	'sqft' : square_feet,
! 	'list' : list,
! 	'doub' : real,
! 	'nov ' : November,
! 	'qrts' : quarts,
  	'degc' : degrees_Celsius,
! 	'msng' : missing_value,
! 	'alis' : alias,
! 	'jan ' : January,
! 	'metr' : metres,
! 	'mnth' : month,
! 	'ns  ' : number_or_string,
! 	'jun ' : June,
! 	'aug ' : August,
! 	'llst' : linked_list,
! 	'styl' : styled_Clipboard_text,
! 	'encs' : encoded_string,
! 	'galn' : gallons,
! 	'cuin' : cubic_inches,
! 	'fri ' : Friday,
! 	'sutx' : styled_Unicode_text,
! 	'lr  ' : list_or_record,
  	'degk' : degrees_Kelvin,
! 	'mon ' : Monday,
! 	'snd ' : sound,
! 	'pcls' : _class,
! 	'kgrm' : kilograms,
! 	'scpt' : script,
! 	'****' : anything,
! 	'prop' : property,
! 	'reco' : record,
! 	'bool' : boolean,
! 	'oct ' : October,
! 	'sqrm' : square_metres,
! 	'inch' : inches,
! 	'kfrm' : reference_form,
! 	'cobj' : item,
! 	'gram' : grams,
! 	'cha ' : character,
! 	'apr ' : April,
! 	'undf' : _empty_ae_name,
! 	'capp' : app,
! 	'enum' : constant,
! 	'hand' : handler,
! 	'sqmi' : square_miles,
! 	'rdat' : data,
! 	'cstr' : C_string,
! 	'utxt' : Unicode_text,
  	'thu ' : Thursday,
! 	'sqyd' : square_yards,
! 	'yard' : yards,
! 	'cyrd' : cubic_yards,
! 	'ozs ' : ounces,
! 	'lbs ' : pounds,
! 	'cfet' : cubic_feet,
! 	'ccmt' : cubic_centimetres,
! 	'sat ' : Saturday,
! 	'sep ' : September,
! 	'fss ' : file_specification,
! 	'ctxt' : text,
  }
  
  _propdeclarations = {
! 	'week' : weeks,
  	'kMod' : modifiers,
! 	'pare' : parent,
! 	'leng' : length,
  	'hour' : hours,
! 	'mnth' : month,
! 	'min ' : minutes,
  	'wkdy' : weekday,
  	'dstr' : date_string,
! 	'rest' : rest,
! 	'ascr' : AppleScript,
! 	'kknd' : key_kind,
! 	'c@#^' : _3c_Inheritance_3e_,
! 	'ID  ' : id,
  	'year' : year,
! 	'rvse' : reverse,
! 	'tab ' : tab,
! 	'tstr' : time_string,
! 	'pi  ' : pi,
! 	'ret ' : _return,
! 	'plcd' : language_code,
! 	'kMsg' : key,
! 	'spac' : space,
! 	'days' : days,
! 	'txdl' : text_item_delimiters,
! 	'prdp' : print_depth,
! 	'prln' : print_length,
! 	'pscd' : script_code,
! 	'time' : time,
! 	'pnam' : name,
! 	'rslt' : result,
! 	'day ' : day,
  }
  
***************
*** 2067,2074 ****
  
  _enumdeclarations = {
- 	'boov' : _Enum_boov,
- 	'ekst' : _Enum_ekst,
- 	'misc' : _Enum_misc,
- 	'cons' : _Enum_cons,
  	'eMds' : _Enum_eMds,
  }
--- 2065,2072 ----
  
  _enumdeclarations = {
  	'eMds' : _Enum_eMds,
+ 	'cons' : _Enum_cons,
+ 	'misc' : _Enum_misc,
+ 	'ekst' : _Enum_ekst,
+ 	'boov' : _Enum_boov,
  }

Index: Macintosh_Connectivity_Clas.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/Macintosh_Connectivity_Clas.py,v
retrieving revision 1.1
retrieving revision 1.1.20.1
diff -C2 -d -r1.1 -r1.1.20.1
*** Macintosh_Connectivity_Clas.py	17 Aug 2000 22:14:56 -0000	1.1
--- Macintosh_Connectivity_Clas.py	24 Apr 2002 09:21:47 -0000	1.1.20.1
***************
*** 2,6 ****
  Level 1, version 1
  
! Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
--- 2,6 ----
  Level 1, version 1
  
! Generated from Moes:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
***************
*** 37,41 ****
  	"""address specification - Unique designation of a device or service connected to this computer """
  	want = 'cadr'
- # repeated property properties property that allows getting and setting of multiple properties
  class conduit(aetools.NProperty):
  	"""conduit - How the addressee is physically connected """
--- 37,40 ----
***************
*** 66,70 ****
  	"""AppleTalk address - Addresses a device or service connected via the AppleTalk protocol """
  	want = 'cat '
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
  class AppleTalk_machine(aetools.NProperty):
  	"""AppleTalk machine - the machine name part of the address """
--- 65,68 ----
***************
*** 85,90 ****
  	"""bus slot - Addresses a PC, PCI, or NuBus card """
  	want = 'cbus'
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
- # repeated property ID the slot number
  
  bus_slots = bus_slot
--- 83,86 ----
***************
*** 93,98 ****
  	"""Ethernet address - Addresses a device by its Ethernet address """
  	want = 'cen '
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
- # repeated property ID the Ethernet address
  
  Ethernet_addresses = Ethernet_address
--- 89,92 ----
***************
*** 101,106 ****
  	"""FireWire address - Addresses a device on the FireWire bus """
  	want = 'cfw '
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
- # repeated property ID the FireWire device ID
  
  FireWire_addresses = FireWire_address
--- 95,98 ----
***************
*** 109,114 ****
  	"""IP address - Addresses a device or service via the Internet Protocol (IP) """
  	want = 'cip '
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
- # repeated property ID the address in the form "127.201.0.1"
  class DNS_form(aetools.NProperty):
  	"""DNS form - the address in the form "apple.com" """
--- 101,104 ----
***************
*** 125,129 ****
  	"""LocalTalk address - Addresses a device by its LocalTalk address """
  	want = 'clt '
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
  class network(aetools.NProperty):
  	"""network - the LocalTalk network number """
--- 115,118 ----
***************
*** 144,153 ****
  	"""SCSI address - Addresses a SCSI device """
  	want = 'cscs'
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
  class SCSI_bus(aetools.NProperty):
  	"""SCSI bus - the SCSI bus number """
  	which = 'pscb'
  	want = 'shor'
- # repeated property ID the SCSI ID
  class LUN(aetools.NProperty):
  	"""LUN - the SCSI logical unit number """
--- 133,140 ----
***************
*** 160,165 ****
  	"""Token Ring address - Addresses a device or service via the Token Ring protocol """
  	want = 'ctok'
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
- # repeated property ID the Token Ring ID
  
  Token_Ring_addresses = Token_Ring_address
--- 147,150 ----
***************
*** 168,172 ****
  	"""USB address - Addresses a device on the Universal Serial Bus """
  	want = 'cusb'
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
  class name(aetools.NProperty):
  	"""name - the USB device name """
--- 153,156 ----
***************
*** 333,369 ****
  #
  _classdeclarations = {
! 	'cen ' : Ethernet_address,
! 	'clt ' : LocalTalk_address,
! 	'cip ' : IP_address,
! 	'cusb' : USB_address,
! 	'cadb' : ADB_address,
! 	'cscs' : SCSI_address,
! 	'cbus' : bus_slot,
! 	'cdev' : device_specification,
  	'ctok' : Token_Ring_address,
  	'cfw ' : FireWire_address,
! 	'cadr' : address_specification,
! 	'cat ' : AppleTalk_address,
  }
  
  _propdeclarations = {
! 	'pnod' : node,
! 	'pslu' : LUN,
! 	'patm' : AppleTalk_machine,
! 	'pdva' : device_address,
! 	'pscb' : SCSI_bus,
  	'ppor' : port,
! 	'pALL' : properties,
! 	'ID  ' : ID,
! 	'c@#^' : _3c_inheritance_3e_,
! 	'pdvt' : device_type,
! 	'pnet' : network,
  	'patz' : AppleTalk_zone,
  	'pnam' : name,
! 	'pcon' : conduit,
! 	'pprt' : protocol,
! 	'patt' : AppleTalk_type,
  	'psoc' : socket,
! 	'pdns' : DNS_form,
  }
  
--- 317,353 ----
  #
  _classdeclarations = {
! 	'cat ' : AppleTalk_address,
! 	'cadr' : address_specification,
  	'ctok' : Token_Ring_address,
  	'cfw ' : FireWire_address,
! 	'cbus' : bus_slot,
! 	'cscs' : SCSI_address,
! 	'cadb' : ADB_address,
! 	'cusb' : USB_address,
! 	'cdev' : device_specification,
! 	'clt ' : LocalTalk_address,
! 	'cip ' : IP_address,
! 	'cen ' : Ethernet_address,
  }
  
  _propdeclarations = {
! 	'pdns' : DNS_form,
  	'ppor' : port,
! 	'patt' : AppleTalk_type,
! 	'pprt' : protocol,
! 	'pcon' : conduit,
  	'patz' : AppleTalk_zone,
+ 	'pnet' : network,
+ 	'pdvt' : device_type,
  	'pnam' : name,
! 	'c@#^' : _3c_inheritance_3e_,
! 	'ID  ' : ID,
! 	'pALL' : properties,
! 	'pscb' : SCSI_bus,
! 	'pdva' : device_address,
! 	'patm' : AppleTalk_machine,
  	'psoc' : socket,
! 	'pslu' : LUN,
! 	'pnod' : node,
  }
  
***************
*** 373,377 ****
  _enumdeclarations = {
  	'econ' : _Enum_econ,
- 	'epro' : _Enum_epro,
  	'edvt' : _Enum_edvt,
  }
--- 357,361 ----
  _enumdeclarations = {
  	'econ' : _Enum_econ,
  	'edvt' : _Enum_edvt,
+ 	'epro' : _Enum_epro,
  }

Index: QuickDraw_Graphics_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/QuickDraw_Graphics_Suite.py,v
retrieving revision 1.1
retrieving revision 1.1.20.1
diff -C2 -d -r1.1 -r1.1.20.1
*** QuickDraw_Graphics_Suite.py	17 Aug 2000 22:14:56 -0000	1.1
--- QuickDraw_Graphics_Suite.py	24 Apr 2002 09:21:47 -0000	1.1.20.1
***************
*** 2,6 ****
  Level 1, version 1
  
! Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
--- 2,6 ----
  Level 1, version 1
  
! Generated from Moes:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
***************
*** 189,193 ****
  	"""pixel - A pixel """
  	want = 'cpxl'
- # repeated property color the color
  
  pixels = pixel
--- 189,192 ----
***************
*** 345,398 ****
  #
  _classdeclarations = {
! 	'crec' : rectangle,
! 	'cpix' : pixel_map,
! 	'carc' : arc,
  	'cgsh' : graphic_shape,
  	'cpxl' : pixel,
  	'crrc' : rounded_rectangle,
! 	'cpgn' : polygon,
! 	'cdrw' : drawing_area,
! 	'cgob' : graphic_object,
! 	'glin' : graphic_line,
! 	'cgtx' : graphic_text,
! 	'covl' : oval,
! 	'cpic' : graphic_group,
  }
  
  _propdeclarations = {
  	'pend' : end_point,
- 	'pupd' : update_on_change,
  	'pstp' : start_point,
! 	'pdrt' : definition_rect,
! 	'pnam' : name,
! 	'pbcl' : background_color,
  	'pptm' : transfer_mode,
! 	'pnel' : default_location,
! 	'pdpt' : pixel_depth,
! 	'gobs' : ordering,
! 	'ustl' : uniform_styles,
! 	'ptlt' : point_list,
! 	'pdst' : dash_style,
! 	'psct' : writing_code,
! 	'txst' : style,
! 	'font' : font,
! 	'pchd' : corner_curve_height,
! 	'arro' : arrow_style,
! 	'ppwd' : pen_width,
! 	'ptps' : default_size,
! 	'ppcl' : pen_color,
  	'ptxf' : default_font,
  	'pcwd' : corner_curve_width,
! 	'ptxc' : text_color,
! 	'cltb' : color_table,
! 	'pppa' : pen_pattern,
! 	'pang' : start_angle,
! 	'flpt' : fill_pattern,
! 	'colr' : color,
! 	'pbnd' : bounds,
  	'ptsz' : size,
! 	'parc' : arc_angle,
! 	'flcl' : fill_color,
! 	'pbpt' : background_pattern,
  }
  
--- 344,397 ----
  #
  _classdeclarations = {
! 	'cpic' : graphic_group,
! 	'covl' : oval,
! 	'cgtx' : graphic_text,
  	'cgsh' : graphic_shape,
+ 	'glin' : graphic_line,
+ 	'cgob' : graphic_object,
+ 	'cdrw' : drawing_area,
+ 	'cpgn' : polygon,
  	'cpxl' : pixel,
  	'crrc' : rounded_rectangle,
! 	'carc' : arc,
! 	'cpix' : pixel_map,
! 	'crec' : rectangle,
  }
  
  _propdeclarations = {
+ 	'pbpt' : background_pattern,
+ 	'flcl' : fill_color,
+ 	'parc' : arc_angle,
+ 	'pbnd' : bounds,
+ 	'colr' : color,
+ 	'flpt' : fill_pattern,
+ 	'ustl' : uniform_styles,
+ 	'font' : font,
  	'pend' : end_point,
  	'pstp' : start_point,
! 	'pang' : start_angle,
  	'pptm' : transfer_mode,
! 	'cltb' : color_table,
! 	'ptxc' : text_color,
  	'ptxf' : default_font,
+ 	'ppcl' : pen_color,
+ 	'ptps' : default_size,
+ 	'ppwd' : pen_width,
+ 	'arro' : arrow_style,
  	'pcwd' : corner_curve_width,
! 	'txst' : style,
! 	'psct' : writing_code,
! 	'pdst' : dash_style,
! 	'ptlt' : point_list,
! 	'gobs' : ordering,
! 	'pdpt' : pixel_depth,
! 	'pnel' : default_location,
! 	'pchd' : corner_curve_height,
! 	'pbcl' : background_color,
! 	'pnam' : name,
! 	'pdrt' : definition_rect,
  	'ptsz' : size,
! 	'pupd' : update_on_change,
! 	'pppa' : pen_pattern,
  }
  
***************
*** 401,405 ****
  
  _enumdeclarations = {
- 	'tran' : _Enum_tran,
  	'arro' : _Enum_arro,
  }
--- 400,404 ----
  
  _enumdeclarations = {
  	'arro' : _Enum_arro,
+ 	'tran' : _Enum_tran,
  }

Index: QuickDraw_Graphics_Suppleme.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/QuickDraw_Graphics_Suppleme.py,v
retrieving revision 1.1
retrieving revision 1.1.20.1
diff -C2 -d -r1.1 -r1.1.20.1
*** QuickDraw_Graphics_Suppleme.py	17 Aug 2000 22:14:56 -0000	1.1
--- QuickDraw_Graphics_Suppleme.py	24 Apr 2002 09:21:47 -0000	1.1.20.1
***************
*** 2,6 ****
  Level 1, version 1
  
! Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
--- 2,6 ----
  Level 1, version 1
  
! Generated from Moes:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
***************
*** 61,66 ****
  _propdeclarations = {
  	'prot' : rotation,
- 	'pscl' : scale,
  	'ptrs' : translation,
  }
  
--- 61,66 ----
  _propdeclarations = {
  	'prot' : rotation,
  	'ptrs' : translation,
+ 	'pscl' : scale,
  }
  

Index: Required_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/Required_Suite.py,v
retrieving revision 1.1
retrieving revision 1.1.20.1
diff -C2 -d -r1.1 -r1.1.20.1
*** Required_Suite.py	17 Aug 2000 22:14:57 -0000	1.1
--- Required_Suite.py	24 Apr 2002 09:21:47 -0000	1.1.20.1
***************
*** 2,6 ****
  Level 1, version 1
  
! Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
--- 2,6 ----
  Level 1, version 1
  
! Generated from Moes:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
***************
*** 11,15 ****
  _code = 'reqd'
  
! class Required_Suite_Events:
  
  	pass
--- 11,16 ----
  _code = 'reqd'
  
! from _builtinSuites.builtin_Suite import *
! class Required_Suite_Events(builtin_Suite_Events):
  
  	pass

Index: Standard_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/Standard_Suite.py,v
retrieving revision 1.2
retrieving revision 1.2.20.1
diff -C2 -d -r1.2 -r1.2.20.1
*** Standard_Suite.py	17 May 2001 12:38:36 -0000	1.2
--- Standard_Suite.py	24 Apr 2002 09:21:47 -0000	1.2.20.1
***************
*** 2,6 ****
  Level 1, version 1
  
! Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
--- 2,6 ----
  Level 1, version 1
  
! Generated from Moes:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
***************
*** 11,15 ****
  _code = 'core'
  
! class Standard_Suite_Events:
  
  	def open(self, _object, _attributes={}, **_arguments):
--- 11,16 ----
  _code = 'core'
  
! from _builtinSuites.builtin_Suite import *
! class Standard_Suite_Events(builtin_Suite_Events):
  
  	def open(self, _object, _attributes={}, **_arguments):
***************
*** 27,31 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 28,32 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 46,50 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 47,51 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 65,69 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 66,70 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 85,89 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 86,90 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 110,114 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 111,115 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 138,142 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 139,143 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 164,168 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 165,169 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 184,188 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 185,189 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 212,216 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 213,217 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 233,237 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 234,238 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 264,268 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 265,269 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 290,294 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 291,295 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 317,321 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 318,322 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 337,341 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 338,342 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 363,367 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 364,368 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 389,393 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 390,394 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 415,419 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 416,420 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 441,445 ****
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.has_key('errn'):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
--- 442,446 ----
  		_reply, _arguments, _attributes = self.send(_code, _subcode,
  				_arguments, _attributes)
! 		if _arguments.get('errn', 0):
  			raise aetools.Error, aetools.decodeerror(_arguments)
  		# XXXX Optionally decode result
***************
*** 656,703 ****
  #
  _classdeclarations = {
- 	'docu' : document,
- 	'cins' : insertion_point,
- 	'capp' : application,
- 	'alis' : alias,
- 	'csel' : selection_2d_object,
- 	'file' : file,
  	'cwin' : window,
  }
  
  _propdeclarations = {
! 	'ptit' : titled,
  	'pidx' : index,
- 	'pnam' : name,
- 	'pzum' : zoomed,
- 	'pcnt' : contents,
- 	'pcli' : clipboard,
- 	'hclb' : closeable,
- 	'iszm' : zoomable,
- 	'isfl' : floating,
- 	'pspd' : stationery,
- 	'pisf' : frontmost,
- 	'sele' : selection,
- 	'pbnd' : bounds,
- 	'imod' : modified,
  	'pvis' : visible,
  	'pmod' : modal,
! 	'vers' : version,
! 	'prsz' : resizable,
  }
  
  _compdeclarations = {
! 	'>   ' : _3e_,
! 	'bgwt' : starts_with,
  	'>=  ' : _b3_,
- 	'=   ' : _3d_,
- 	'<=  ' : _b2_,
  	'cont' : contains,
! 	'ends' : ends_with,
! 	'<   ' : _3c_,
  }
  
  _enumdeclarations = {
- 	'styl' : _Enum_styl,
  	'savo' : _Enum_savo,
  	'kfrm' : _Enum_kfrm,
  }
--- 657,704 ----
  #
  _classdeclarations = {
  	'cwin' : window,
+ 	'file' : file,
+ 	'csel' : selection_2d_object,
+ 	'alis' : alias,
+ 	'capp' : application,
+ 	'cins' : insertion_point,
+ 	'docu' : document,
  }
  
  _propdeclarations = {
! 	'prsz' : resizable,
! 	'vers' : version,
  	'pidx' : index,
  	'pvis' : visible,
+ 	'imod' : modified,
+ 	'pbnd' : bounds,
+ 	'sele' : selection,
+ 	'pisf' : frontmost,
+ 	'pspd' : stationery,
+ 	'isfl' : floating,
+ 	'iszm' : zoomable,
+ 	'hclb' : closeable,
+ 	'pcli' : clipboard,
  	'pmod' : modal,
! 	'pcnt' : contents,
! 	'pnam' : name,
! 	'pzum' : zoomed,
! 	'ptit' : titled,
  }
  
  _compdeclarations = {
! 	'<   ' : _3c_,
! 	'ends' : ends_with,
  	'>=  ' : _b3_,
  	'cont' : contains,
! 	'<=  ' : _b2_,
! 	'=   ' : _3d_,
! 	'bgwt' : starts_with,
! 	'>   ' : _3e_,
  }
  
  _enumdeclarations = {
  	'savo' : _Enum_savo,
+ 	'styl' : _Enum_styl,
  	'kfrm' : _Enum_kfrm,
  }

Index: Table_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/Table_Suite.py,v
retrieving revision 1.2
retrieving revision 1.2.20.1
diff -C2 -d -r1.2 -r1.2.20.1
*** Table_Suite.py	17 May 2001 12:38:31 -0000	1.2
--- Table_Suite.py	24 Apr 2002 09:21:47 -0000	1.2.20.1
***************
*** 2,6 ****
  Level 1, version 1
  
! Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
--- 2,6 ----
  Level 1, version 1
  
! Generated from Moes:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
***************
*** 82,94 ****
  _classdeclarations = {
  	'ccel' : cell,
- 	'ctbl' : table,
  	'ccol' : column,
  	'crow' : row,
  }
  
  _propdeclarations = {
- 	'ppro' : protection,
- 	'pfor' : formula,
  	'pnam' : name,
  }
  
--- 82,94 ----
  _classdeclarations = {
  	'ccel' : cell,
  	'ccol' : column,
+ 	'ctbl' : table,
  	'crow' : row,
  }
  
  _propdeclarations = {
  	'pnam' : name,
+ 	'pfor' : formula,
+ 	'ppro' : protection,
  }
  

Index: Text_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/Text_Suite.py,v
retrieving revision 1.2
retrieving revision 1.2.20.1
diff -C2 -d -r1.2 -r1.2.20.1
*** Text_Suite.py	17 May 2001 12:38:26 -0000	1.2
--- Text_Suite.py	24 Apr 2002 09:21:47 -0000	1.2.20.1
***************
*** 2,6 ****
  Level 1, version 1
  
! Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
--- 2,6 ----
  Level 1, version 1
  
! Generated from Moes:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
***************
*** 27,31 ****
  	"""line - A line of text """
  	want = 'clin'
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
  class justification(aetools.NProperty):
  	"""justification - the justification of the text """
--- 27,30 ----
***************
*** 38,42 ****
  	"""paragraph - A paragraph """
  	want = 'cpar'
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
  
  paragraphs = paragraph
--- 37,40 ----
***************
*** 78,82 ****
  	"""text flow - A contiguous block of text.  Page layout applications call this a •story.Ơ """
  	want = 'cflo'
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
  class name(aetools.NProperty):
  	"""name - the name """
--- 76,79 ----
***************
*** 103,107 ****
  	"""word - A word """
  	want = 'cwor'
- # repeated property _3c_inheritance_3e_ inherits some of its properties from this class
  
  words = word
--- 100,103 ----
***************
*** 184,208 ****
  #
  _classdeclarations = {
- 	'clin' : line,
- 	'ctxt' : text,
- 	'cwor' : word,
- 	'cflo' : text_flow,
  	'cpar' : paragraph,
- 	'tsty' : text_style_info,
  	'cha ' : character,
  }
  
  _propdeclarations = {
! 	'psct' : writing_code,
! 	'txst' : style,
  	'colr' : color,
! 	'font' : font,
! 	'pnam' : name,
  	'ustl' : uniform_styles,
- 	'pjst' : justification,
- 	'ofst' : off_styles,
- 	'onst' : on_styles,
- 	'ptsz' : size,
  	'c@#^' : _3c_inheritance_3e_,
  }
  
--- 180,204 ----
  #
  _classdeclarations = {
  	'cpar' : paragraph,
  	'cha ' : character,
+ 	'cflo' : text_flow,
+ 	'tsty' : text_style_info,
+ 	'clin' : line,
+ 	'cwor' : word,
+ 	'ctxt' : text,
  }
  
  _propdeclarations = {
! 	'ptsz' : size,
! 	'ofst' : off_styles,
! 	'pjst' : justification,
  	'colr' : color,
! 	'txst' : style,
! 	'psct' : writing_code,
  	'ustl' : uniform_styles,
  	'c@#^' : _3c_inheritance_3e_,
+ 	'pnam' : name,
+ 	'font' : font,
+ 	'onst' : on_styles,
  }
  

Index: Type_Names_Suite.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/Type_Names_Suite.py,v
retrieving revision 1.1
retrieving revision 1.1.20.1
diff -C2 -d -r1.1 -r1.1.20.1
*** Type_Names_Suite.py	17 Aug 2000 22:14:57 -0000	1.1
--- Type_Names_Suite.py	24 Apr 2002 09:21:47 -0000	1.1.20.1
***************
*** 2,6 ****
  Level 1, version 1
  
! Generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
--- 2,6 ----
  Level 1, version 1
  
! Generated from Moes:Systeemmap:Extensies:AppleScript
  AETE/AEUT resource version 1/0, language 0, script 0
  """
***************
*** 348,391 ****
  #
  _classdeclarations = {
! 	'targ' : target_id,
! 	'null' : null,
! 	'lfxd' : long_fixed,
! 	'TIFF' : TIFF_picture,
  	'vers' : version,
  	'magn' : unsigned_integer,
- 	'exte' : extended_real,
- 	'qdrt' : bounding_rectangle,
- 	'lrct' : long_rectangle,
- 	'lfpt' : long_fixed_point,
- 	'pmin' : type_parameter_info,
- 	'pinf' : type_property_info,
- 	'tdas' : dash_style,
- 	'tr96' : RGB96_color,
  	'cmnu' : menu,
- 	'gcli' : type_class_info,
- 	'lpnt' : long_point,
- 	'suin' : type_suite_info,
- 	'trot' : rotation,
- 	'fixd' : fixed,
- 	'lfrc' : long_fixed_rectangle,
  	'frct' : fixed_rectangle,
  	'evin' : type_event_info,
  	'sing' : small_real,
! 	'aete' : application_dictionary,
! 	'tpmm' : pixel_map_record,
! 	'cmen' : menu_item,
! 	'QDpt' : point,
! 	'EPS ' : PostScript_picture,
! 	'mLoc' : machine_location,
! 	'insl' : location_reference,
! 	'elin' : type_element_info,
! 	'comp' : double_integer,
! 	'fpnt' : fixed_point,
! 	'clrt' : color_table,
  	'styl' : scrap_styles,
! 	'aeut' : system_dictionary,
! 	'tr16' : RGB16_color,
! 	'shor' : small_integer,
! 	'TEXT' : plain_text,
  }
  
--- 348,391 ----
  #
  _classdeclarations = {
! 	'shor' : small_integer,
! 	'tr16' : RGB16_color,
  	'vers' : version,
+ 	'aeut' : system_dictionary,
+ 	'clrt' : color_table,
+ 	'fpnt' : fixed_point,
+ 	'TEXT' : plain_text,
+ 	'elin' : type_element_info,
+ 	'insl' : location_reference,
+ 	'mLoc' : machine_location,
+ 	'EPS ' : PostScript_picture,
+ 	'QDpt' : point,
+ 	'cmen' : menu_item,
+ 	'tpmm' : pixel_map_record,
+ 	'aete' : application_dictionary,
  	'magn' : unsigned_integer,
  	'cmnu' : menu,
  	'frct' : fixed_rectangle,
+ 	'lfrc' : long_fixed_rectangle,
  	'evin' : type_event_info,
  	'sing' : small_real,
! 	'suin' : type_suite_info,
! 	'trot' : rotation,
! 	'pmin' : type_parameter_info,
! 	'fixd' : fixed,
  	'styl' : scrap_styles,
! 	'lpnt' : long_point,
! 	'gcli' : type_class_info,
! 	'TIFF' : TIFF_picture,
! 	'tr96' : RGB96_color,
! 	'tdas' : dash_style,
! 	'exte' : extended_real,
! 	'pinf' : type_property_info,
! 	'lfpt' : long_fixed_point,
! 	'lrct' : long_rectangle,
! 	'qdrt' : bounding_rectangle,
! 	'comp' : double_integer,
! 	'lfxd' : long_fixed,
! 	'null' : null,
! 	'targ' : target_id,
  }
  

Index: __init__.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Lib/lib-scriptpackages/StdSuites/__init__.py,v
retrieving revision 1.2
retrieving revision 1.2.20.1
diff -C2 -d -r1.2 -r1.2.20.1
*** __init__.py	20 Aug 2000 19:28:27 -0000	1.2
--- __init__.py	24 Apr 2002 09:21:47 -0000	1.2.20.1
***************
*** 1,7 ****
  """
! Package generated from Macintosh HD:Systeemmap:Extensies:AppleScript
  Resource aeut resid 0 Standard Event Suites for English
  """
  import aetools
  import AppleScript_Suite
  import Required_Suite
--- 1,8 ----
  """
! Package generated from Moes:Systeemmap:Extensies:AppleScript
  Resource aeut resid 0 Standard Event Suites for English
  """
  import aetools
+ Error = aetools.Error
  import AppleScript_Suite
  import Required_Suite