mirror of
https://github.com/panda3d/panda3d.git
synced 2025-09-29 00:06:44 -04:00
parent
df848965fb
commit
ec1c3ef347
@ -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)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user