Files
jedi/test/examples/namespace_package/ns1/pkg/__init__.py
2020-01-12 00:51:42 +01:00

10 lines
214 B
Python

foo = 'ns1!'
# this is a namespace package
try:
import pkg_resources
pkg_resources.declare_namespace(__name__)
except ImportError:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)