summaryrefslogtreecommitdiff
path: root/python/helpers/pycharm_generator_utils/clr_tools.py
diff options
context:
space:
mode:
Diffstat (limited to 'python/helpers/pycharm_generator_utils/clr_tools.py')
-rw-r--r--python/helpers/pycharm_generator_utils/clr_tools.py13
1 files changed, 8 insertions, 5 deletions
diff --git a/python/helpers/pycharm_generator_utils/clr_tools.py b/python/helpers/pycharm_generator_utils/clr_tools.py
index 4c273ae7d4d5..f4c3cfbf90f0 100644
--- a/python/helpers/pycharm_generator_utils/clr_tools.py
+++ b/python/helpers/pycharm_generator_utils/clr_tools.py
@@ -18,10 +18,14 @@ def get_namespace_by_name(object_name):
first_part = parts[0]
remain_part = parts[2]
- while remain_part and type(_get_attr_by_name(imported_object, remain_part)) is type: # While we are in class
+ while remain_part and type(_get_attr_by_name(imported_object, remain_part)) is type: # While we are in class
remain_part = remain_part.rpartition(".")[0]
- return first_part + "." + remain_part if remain_part else first_part
+ if remain_part:
+ return first_part + "." + remain_part
+ else:
+ return first_part
+
def _import_first(object_name):
"""
@@ -33,13 +37,12 @@ def _import_first(object_name):
"""
while object_name:
try:
- return (__import__(object_name), object_name)
+ return (__import__(object_name, globals=[], locals=[], fromlist=[]), object_name)
except ImportError:
- object_name = object_name.rpartition(".")[0] # Remove rightest part
+ object_name = object_name.rpartition(".")[0] # Remove rightest part
raise Exception("No module name found in name " + object_name)
-
def _get_attr_by_name(obj, name):
"""
Accepts chain of attributes in dot notation like "some.property.name" and gets them on object