_jpype.py 290 B

1234567
  1. def __bootstrap__():
  2. global __bootstrap__, __loader__, __file__
  3. import sys, pkg_resources, imp
  4. __file__ = pkg_resources.resource_filename(__name__, '_jpype.pyd')
  5. __loader__ = None; del __bootstrap__, __loader__
  6. imp.load_dynamic(__name__,__file__)
  7. __bootstrap__()