def chosen_typespec_dumps(typeconfig):
"""
Add a comment about the chosen type specialization that was used for a given function.
"""
ans = chosen_typespec + repr(typeconfig) + '\n'
if typeconfig is not None and verbose:
print('chosen_typespec_dumps:', ans)
print('chosen_typespec_dumps, checking')
for value in typeconfig.values():
print('chosen_typespec_dumps, check', type(value), repr(value))
# value.check()
return ans
评论列表
文章目录