mirror of
https://github.com/davidhalter/jedi.git
synced 2025-12-10 15:51:51 +08:00
10 lines
214 B
Python
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__)
|