88k regex = RuntimeError
Tim N. van der Leeuw
tim.leeuwvander at nl.unisys.com
Tue Feb 14 05:56:09 EST 2006
Why don't you create a regex that finds for you all C function
declarations (and which returns you the function-names); apply
re.findall() to all files with that regex; and then check those
funtion-names against the set of allSupported?
You might even be able to find a regex for C funtion declarations on
the web.
Your gAllSupported can be a set(); you can then create the intersection
between gAllSupported and the function-names found by your regex.
Cheers,
--Tim
More information about the Python-list
mailing list