hy/hy/__main__.py

15 lines
349 B
Python
Raw Normal View History

2013-03-22 00:27:34 +01:00
import hy # NOQA
2013-03-19 05:58:43 +01:00
import imp
import sys
2013-03-22 00:27:34 +01:00
# This just mocks the normalish behavior of the Python interp. Helpful to aid
# with shiming existing apps that don't really "work" with Hy.
#
# You could say this script helps Hyjack a file.
#
2013-03-19 05:58:43 +01:00
if len(sys.argv) > 1:
sys.argv.pop(0)
imp.load_source("__main__", sys.argv[0])
sys.exit(0) # right?