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

fixed the conversion of long parameters Daniel

* python/generator.py: fixed the conversion of long parameters
Daniel
This commit is contained in:
Daniel Veillard
2006-08-04 12:44:24 +00:00
parent 7b4e2e20fd
commit ddefe9cccf
2 changed files with 5 additions and 1 deletions

View File

@ -231,7 +231,7 @@ skipped_types = {
py_types = {
'void': (None, None, None, None),
'int': ('i', None, "int", "int"),
'long': ('i', None, "int", "int"),
'long': ('l', None, "long", "long"),
'double': ('d', None, "double", "double"),
'unsigned int': ('i', None, "int", "int"),
'xmlChar': ('c', None, "int", "int"),