Update of /cvsroot/pywin32/pywin32/com/win32com/makegw
In directory sc8-pr-cvs1:/tmp/cvs-serv6652
Modified Files:
makegwparse.py
Log Message:
Syntax error in the dead, old, makegw.
Index: makegwparse.py
===================================================================
RCS file: /cvsroot/pywin32/pywin32/com/win32com/makegw/makegwparse.py,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** makegwparse.py 4 Jun 2000 05:50:03 -0000 1.7
--- makegwparse.py 26 Jul 2003 14:10:49 -0000 1.8
***************
*** 259,263 ****
(self.arg.name, notdirected)
def GetBuildForInterfacePostCode(self):
! return "\tSysFreeString(%s); % (self.arg.name,) + \
ArgFormatterPythonCOM.GetBuildForInterfacePostCode(self)
def GetBuildForGatewayPostCode(self):
--- 259,263 ----
(self.arg.name, notdirected)
def GetBuildForInterfacePostCode(self):
! return "\tSysFreeString(%s);\n" % (self.arg.name,) + \
ArgFormatterPythonCOM.GetBuildForInterfacePostCode(self)
def GetBuildForGatewayPostCode(self):
|