mirror of
https://gitlab.gnome.org/GNOME/libxml2.git
synced 2025-07-07 12:21:17 +03:00
fixed a stupid error breaking the python API Daniel
* python/generator.py python/libxml2class.txt: fixed a stupid error breaking the python API Daniel
This commit is contained in:
@ -672,9 +672,9 @@ def nameFixup(name, classe, type, file):
|
||||
elif name[0:20] == "xmlParserInputBuffer" and file != "python":
|
||||
func = name[20:]
|
||||
func = string.lower(func[0:1]) + func[1:]
|
||||
elif name[0:9] == "xmlRegexp":
|
||||
elif name[0:9] == "xmlRegexp" and file == "xmlregexp":
|
||||
func = "regexp" + name[9:]
|
||||
elif name[0:6] == "xmlReg":
|
||||
elif name[0:6] == "xmlReg" and file == "xmlregexp":
|
||||
func = "regexp" + name[6:]
|
||||
elif name[0:11] == "xmlACatalog":
|
||||
func = name[11:]
|
||||
|
Reference in New Issue
Block a user