Browse Source

webapi: doc() now returns str, instead of print

pull/34/head
Rossen Georgiev 9 years ago
parent
commit
1ecc7ba9dc
  1. 10
      steam/webapi.py

10
steam/webapi.py

@ -212,13 +212,13 @@ class WebAPI(object):
def doc(self):
"""
Print documentation for all interfaces and their methods
:return: Documentation for all interfaces and their methods
:rtype: :class:`str`
"""
doc = "Steam Web API - List of all interfaces\n\n"
for interface in self.interfaces:
doc += interface.__doc__
print(doc)
return doc
class WebAPIInterface(object):
@ -278,7 +278,7 @@ class WebAPIInterface(object):
return self._parent.session
def doc(self):
print(self.__doc__)
return self.__doc__
@property
def __doc__(self):
@ -386,7 +386,7 @@ class WebAPIMethod(object):
return self._dict['name']
def doc(self):
print(self.__doc__)
return self.__doc__
@property
def __doc__(self):

Loading…
Cancel
Save