mirror of
https://gitlab.gnome.org/GNOME/libxslt
synced 2025-08-07 10:42:55 +03:00
*** empty log message ***
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
|
||||||
|
|
||||||
Wed Jul 19 15:06:39 EDT 2006 Daniel Veillard <daniel@veillard.com>
|
Wed Jul 19 15:06:39 EDT 2006 Daniel Veillard <daniel@veillard.com>
|
||||||
|
|
||||||
* python/types.c: fix float and boolean XPath conversions
|
* python/types.c: fix float and boolean XPath conversions
|
||||||
|
@@ -216,7 +216,7 @@ skipped_types = {
|
|||||||
py_types = {
|
py_types = {
|
||||||
'void': (None, None, None, None, None),
|
'void': (None, None, None, None, None),
|
||||||
'int': ('i', None, "int", "int", "libxml_"),
|
'int': ('i', None, "int", "int", "libxml_"),
|
||||||
'long': ('i', None, "int", "int", "libxml_"),
|
'long': ('l', None, "long", "long", "libxml_"),
|
||||||
'double': ('d', None, "double", "double", "libxml_"),
|
'double': ('d', None, "double", "double", "libxml_"),
|
||||||
'unsigned int': ('i', None, "int", "int", "libxml_"),
|
'unsigned int': ('i', None, "int", "int", "libxml_"),
|
||||||
'xmlChar': ('c', None, "int", "int", "libxml_"),
|
'xmlChar': ('c', None, "int", "int", "libxml_"),
|
||||||
|
Reference in New Issue
Block a user