diff options
| author | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2009-03-27 15:04:48 +0000 |
|---|---|---|
| committer | Benjamin Dauvergne <bdauvergne@entrouvert.com> | 2009-03-27 15:04:48 +0000 |
| commit | 3705a0f86d6588ffb48285892d19c6bb89b62c68 (patch) | |
| tree | ba77cef255009fa6200f5a01d3b92a76aa677663 /bindings/php5/php_code.py | |
| parent | 46643326fd53a265d47947280b6799946af7c9d1 (diff) | |
| download | lasso-3705a0f86d6588ffb48285892d19c6bb89b62c68.tar.gz lasso-3705a0f86d6588ffb48285892d19c6bb89b62c68.tar.xz lasso-3705a0f86d6588ffb48285892d19c6bb89b62c68.zip | |
Bindings php5: add support for xmlNode arguments
* bindings/php5/php_code.py:
* bindings/php5/wrapper_source.py:
complete error reporting about on documentation treatment.
treat xmlNode* arguments (convert string to xmlNode, give as
argument, then frees it).
Diffstat (limited to 'bindings/php5/php_code.py')
| -rw-r--r-- | bindings/php5/php_code.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/bindings/php5/php_code.py b/bindings/php5/php_code.py index bce43ca1..76bae23d 100644 --- a/bindings/php5/php_code.py +++ b/bindings/php5/php_code.py @@ -365,7 +365,7 @@ function lassoRegisterIdWsf2DstService($prefix, $href) { elif type == '%': # %TRUE, %FALSE if var in ('TRUE', 'FALSE'): return var - print >> sys.stderr, 'W: unknown docstring thingie: %s' % s.group(1) + print >> sys.stderr, 'W: unknown docstring thingie \'%s\' in \'%s\'' % (s.group(1), func.docstring.orig_docstring) elif type == '@': if var == first_arg_name: return '$this' |
