1
0
mirror of https://gitlab.gnome.org/GNOME/libxml2.git synced 2025-07-29 11:41:22 +03:00

python: Don't output missing generators during build

This commit is contained in:
Nick Wellnhofer
2022-09-06 00:21:28 +02:00
parent a41878bd4c
commit 9d19c169bb

View File

@ -669,12 +669,12 @@ def buildStubs():
export.close() export.close()
wrapper.close() wrapper.close()
print("Generated %d wrapper functions, %d failed, %d skipped\n" % (nb_wrap, print("Generated %d wrapper functions, %d failed, %d skipped" % (nb_wrap,
failed, skipped)) failed, skipped))
print("Missing type converters: ") # print("Missing type converters: ")
for type in list(unknown_types.keys()): # for type in list(unknown_types.keys()):
print("%s:%d " % (type, len(unknown_types[type]))) # print("%s:%d " % (type, len(unknown_types[type])))
print() # print()
####################################################################### #######################################################################
# #