mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
14 lines
237 B
Python
14 lines
237 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
import sys
|
||
|
import pymake.parser
|
||
|
|
||
|
filename = sys.argv[1]
|
||
|
source = None
|
||
|
|
||
|
with open(filename, 'rU') as fh:
|
||
|
source = fh.read()
|
||
|
|
||
|
statements = pymake.parser.parsestring(source, filename)
|
||
|
print statements.to_source()
|