mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-29 11:41:22 +03:00
fixed the conversion of long parameters Daniel
* python/generator.py: fixed the conversion of long parameters Daniel
This commit is contained in:
@ -1,3 +1,7 @@
|
||||
Fri Aug 4 14:50:41 CEST 2006 Daniel Veillard <daniel@veillard.com>
|
||||
|
||||
* python/generator.py: fixed the conversion of long parameters
|
||||
|
||||
Thu Jul 13 15:03:11 CEST 2006 Kasimier Buchcik <libxml2-cvs@cazic.net>
|
||||
|
||||
* xmlsave.c: Removed the automatic generation of CDATA sections
|
||||
|
@ -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"),
|
||||
|
Reference in New Issue
Block a user