Files
Elizaveta Shashkova 3601a8a83c Use pkgutil in case of any error with pkg_resources (PY-29671)
Problems with `pkg_resources` module shouldn't break working with extensions in debugger.
2018-04-25 14:10:44 +03:00

6 lines
147 B
Python

try:
__import__('pkg_resources').declare_namespace(__name__)
except:
import pkgutil
__path__ = pkgutil.extend_path(__path__, __name__)