mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-03 14:28:39 +09:00
13 lines
237 B
Python
13 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()
|