Skip to content

Commit fc2abe4

Browse files
author
Jamie Kirkpatrick
committedApr 24, 2009
Apply patch from 'Erny' to add docstrings to soap methods.
1 parent 5325902 commit fc2abe4

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed
 

‎soaplib/service.py

+1
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@ def explainMethod(*args, **kwargs):
4949

5050
return descriptor
5151
return f(*args, **kwargs)
52+
explainMethod.__doc__ = f.__doc__
5253
explainMethod.func_name = f.func_name
5354
explainMethod._is_soap_method = True
5455
return explainMethod

0 commit comments

Comments
 (0)
Please sign in to comment.