mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
Problems with `pkg_resources` module shouldn't break working with extensions in debugger.
6 lines
147 B
Python
6 lines
147 B
Python
try:
|
|
__import__('pkg_resources').declare_namespace(__name__)
|
|
except:
|
|
import pkgutil
|
|
__path__ = pkgutil.extend_path(__path__, __name__)
|