This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def __bootstrap__(): | |
from sys import modules | |
from hpy.universal import load | |
from pkg_resources import resource_filename | |
ext_filepath = resource_filename(__name__, 'kiwisolver.hpy.so') | |
m = load('kiwisolver', ext_filepath, debug=is_debug) | |
modules[__name__] = m |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment