mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
9 lines
161 B
Python
9 lines
161 B
Python
|
import sys
|
||
|
import pymake.parser
|
||
|
|
||
|
for f in sys.argv[1:]:
|
||
|
print "Parsing %s" % f
|
||
|
fd = open(f)
|
||
|
stmts = pymake.parser.parsestream(fd, f)
|
||
|
print stmts
|