Update of /cvsroot/pywin32/pywin32/com/win32com/makegw
In directory ddv4jf1.ch3.sourceforge.com:/tmp/cvs-serv27962/com/win32com/makegw
Modified Files:
Tag: py3k
makegw.py makegwparse.py
Log Message:
merge recent UnicodeType, string module and NeedUnicodeConversions changes from trunk
Index: makegw.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/makegw/makegw.py,v
retrieving revision 1.9.2.2
retrieving revision 1.9.2.3
diff -C2 -d -r1.9.2.2 -r1.9.2.3
*** makegw.py 27 Nov 2008 11:31:04 -0000 1.9.2.2
--- makegw.py 4 Dec 2008 05:08:41 -0000 1.9.2.3
***************
*** 48,52 ****
import re
- import string
from . import makegwparse
--- 48,51 ----
***************
*** 353,361 ****
if method.args:
for arg in method.args[:-1]:
! inoutstr = string.join(arg.inout, '][')
f.write("\t\t/* [%s] */ %s,\n" % (inoutstr, arg.GetRawDeclaration()))
arg = method.args[-1]
! inoutstr = string.join(arg.inout, '][')
f.write("\t\t/* [%s] */ %s)\n" % (inoutstr, arg.GetRawDeclaration()))
else:
--- 352,360 ----
if method.args:
for arg in method.args[:-1]:
! inoutstr = ']['.join(arg.inout)
f.write("\t\t/* [%s] */ %s,\n" % (inoutstr, arg.GetRawDeclaration()))
arg = method.args[-1]
! inoutstr = ']['.join(arg.inout)
f.write("\t\t/* [%s] */ %s)\n" % (inoutstr, arg.GetRawDeclaration()))
else:
Index: makegwparse.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/makegw/makegwparse.py,v
retrieving revision 1.13.2.1
retrieving revision 1.13.2.2
diff -C2 -d -r1.13.2.1 -r1.13.2.2
*** makegwparse.py 26 Nov 2008 09:03:29 -0000 1.13.2.1
--- makegwparse.py 4 Dec 2008 05:08:41 -0000 1.13.2.2
***************
*** 14,18 ****
import re
import traceback
- import string
class error_not_found(Exception):
--- 14,17 ----
|