Skip to content
Snippets Groups Projects
Commit 67ffcb5d authored by John Parent's avatar John Parent
Browse files

Code cleanup

parent e3d98b3b
No related branches found
No related tags found
No related merge requests found
......@@ -461,7 +461,6 @@ class BindingsGenerator:
def fetch_templated_class_types(self, class_inst):
name_str = class_inst.name
# import pdb; pdb.set_trace()
# Evaluate yaml custom name input string, either lambda function or list of custom names
t_type = re.search("<.+?>", name_str).group()
# Handle double templates, by breaking into a list
......@@ -858,7 +857,6 @@ class BindingsGenerator:
:param class_data: A yaml Python dict of class data read in from wrapper_input under a 'class' header
:return: None
"""
# import pdb; pdb.set_trace()
skip_write_flag = False
if cpp_class_name in self.skip_list:
skip_write_flag = True
......@@ -908,7 +906,6 @@ class BindingsGenerator:
# Get the arguments to the py::class_<>() call
# The first of which is the class name
pyclass_args = instance_data.decl_string
# import pdb; pdb.set_trace()
# Next any super classes
# if desired name added as guard
# Essentially, prevents typedefs from adding parent classes.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment