#!python

from os.path import abspath
from subprocess import call

import pymath

path = abspath(pymath.__file__)
call(['python', '-i', path])
