mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-08-18 10:23:08 +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()
|