|
|
@@ -273,6 +273,7 @@ def processModule(handle, package):
|
|
|
if "panda3d." + package == module_name:
|
|
|
processType(handle, type)
|
|
|
else:
|
|
|
+ typename = interrogate_type_name(type)
|
|
|
print("Type %s has no module name" % typename)
|
|
|
|
|
|
for i_func in range(interrogate_number_of_global_functions()):
|
|
|
@@ -283,7 +284,8 @@ def processModule(handle, package):
|
|
|
if "panda3d." + package == module_name:
|
|
|
processFunction(handle, func)
|
|
|
else:
|
|
|
- print("Type %s has no module name" % typename)
|
|
|
+ funcname = interrogate_function_name(func)
|
|
|
+ print("Function %s has no module name" % funcname)
|
|
|
|
|
|
print("}", file=handle)
|
|
|
|