1
0
mirror of https://github.com/mnaberez/py65.git synced 2024-07-03 05:29:27 +00:00
Mike Naberezny 2009-08-21 23:35:19 -07:00
parent 475c929011
commit b1ea5652dc

View File

@ -1 +1,6 @@
__import__('pkg_resources').declare_namespace(__name__)
# See http://peak.telecommunity.com/DevCenter/setuptools#namespace-packages
try:
__import__('pkg_resources').declare_namespace(__name__)
except ImportError:
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)