mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
12 lines
199 B
Python
Executable File
12 lines
199 B
Python
Executable File
#!/usr/bin/env 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)
|
|
fd.close()
|
|
print stmts
|