diff options
author | Daniel Veillard <veillard@src.gnome.org> | 2003-04-26 12:06:36 +0000 |
---|---|---|
committer | Daniel Veillard <veillard@src.gnome.org> | 2003-04-26 12:06:36 +0000 |
commit | b973e4a094e56e7acd86dde1bdfd88c37d4b9075 (patch) | |
tree | 6af738c89e9c37273f7085535f29f9668c2b1228 /python | |
parent | 505f68f7e269fca54dc94f6322f4bfbb15751d98 (diff) | |
download | libxslt-b973e4a094e56e7acd86dde1bdfd88c37d4b9075.tar.gz libxslt-b973e4a094e56e7acd86dde1bdfd88c37d4b9075.tar.bz2 libxslt-b973e4a094e56e7acd86dde1bdfd88c37d4b9075.zip |
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 Stéphane Bidoul
* libexslt/strings.c: attempt at fixing an object type pbm
* libxslt/triodef.h: update for OpenVMS from libxml2
Daniel
Diffstat (limited to 'python')
-rwxr-xr-x | python/generator.py | 2 | ||||
-rw-r--r-- | python/libxsltclass.txt | 1 |
2 files changed, 1 insertions, 2 deletions
diff --git a/python/generator.py b/python/generator.py index 7f342cdf..ac587a34 100755 --- a/python/generator.py +++ b/python/generator.py @@ -741,8 +741,6 @@ def buildWrappers(): func = nameFixup(name, classe, type, file) info = (2, func, name, ret, args, file) function_classes[classe].append(info) - if found == 1: - break if found == 1: continue if name[0:8] == "xmlXPath": diff --git a/python/libxsltclass.txt b/python/libxsltclass.txt index afb55895..95d9d736 100644 --- a/python/libxsltclass.txt +++ b/python/libxsltclass.txt @@ -207,6 +207,7 @@ Class stylesheet() parseTemplateContent() # functions from module xsltutils + printErrorContext() saveResultToFd() saveResultToFile() saveResultToFilename() |