update docs

This commit is contained in:
richard 2022-02-04 11:11:14 +00:00
parent ef91af804b
commit d05890344d
19 changed files with 725 additions and 172 deletions

View file

@ -27,6 +27,8 @@ def ctype_to_python_type(t):
return 'None'
elif t == "long":
return "int"
elif t == "unsigned long long":
return "int"
elif t == "double":
return "float"
elif "char *" in t: