[Python-checkins] CVS: python/dist/src/Mac/Modules/res resscan.py,1.14,1.15

Jack Jansen jackjansen@users.sourceforge.net
Tue, 01 Jan 2002 14:42:57 -0800


Update of /cvsroot/python/python/dist/src/Mac/Modules/res
In directory usw-pr-cvs1:/tmp/cvs-serv10317/Python/Mac/Modules/res

Modified Files:
	resscan.py 
Log Message:
Added some support for unicode arguments.

Index: resscan.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Mac/Modules/res/resscan.py,v
retrieving revision 1.14
retrieving revision 1.15
diff -C2 -d -r1.14 -r1.15
*** resscan.py	2001/12/18 15:35:52	1.14
--- resscan.py	2002/01/01 22:42:55	1.15
***************
*** 49,53 ****
  	def makeblacklisttypes(self):
  		return [
- 			"UniCharCount", #TBD
  			]
  			
--- 49,52 ----
***************
*** 87,91 ****
  			 
  			([("SInt8", "*", "*")],
! 			 [("SignedByte", "*", "*")])
  			]
  
--- 86,94 ----
  			 
  			([("SInt8", "*", "*")],
! 			 [("SignedByte", "*", "*")]),
! 			 
! 			
! 			([("UniCharCount", "*", "InMode"), ("UniChar_ptr", "*", "InMode")],
! 			 [("UnicodeReverseInBuffer", "*", "*")]),
  			]