another round

This commit is contained in:
Guido van Rossum 1995-02-27 10:11:31 +00:00
parent 8cebe3815f
commit ea64dea05f
1 changed files with 5 additions and 0 deletions

View File

@ -1,4 +1,5 @@
"""\
Tools for scanning header files in search of function prototypes.
Often, the function prototypes in header files contain enough information
@ -353,6 +354,9 @@ class Scanner:
if self.blacklisted(type, name):
self.error("*** %s %s blacklisted", type, name)
return
returnlist = [(type, name, 'ReturnMode')]
returnlist = self.repairarglist(name, returnlist)
[(type, name, returnmode)] = returnlist
arglist = self.extractarglist(args)
arglist = self.repairarglist(name, arglist)
if self.unmanageable(type, name, arglist):
@ -481,3 +485,4 @@ def test():
if __name__ == '__main__':
test()