mirror of
https://github.com/classilla/tenfourfox.git
synced 2024-11-04 10:05:51 +00: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()
|