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

fixed a problem in the generator where the way functions are remapped as

* python/generator.py: fixed a problem in the generator where
  the way functions are remapped as methods on classes was
  not symetric and dependant on python internal hash order,
  as reported by Stphane Bidoul
Daniel
This commit is contained in:
Daniel Veillard
2003-04-26 12:03:54 +00:00
parent 8aff3b7d20
commit 2b32e6f34c
3 changed files with 71 additions and 2 deletions

View File

@ -865,8 +865,6 @@ def buildWrappers():
func = nameFixup(name, classe, type, file)
info = (1, func, name, ret, args, file)
function_classes[classe].append(info)
if found == 1:
break
if found == 1:
continue
if name[0:8] == "xmlXPath":