Browse Source

rework docstring in mixins

pull/41/head
Rossen Georgiev 9 years ago
parent
commit
5993b81683
  1. 12
      steam/client/mixins/__init__.py

12
steam/client/mixins/__init__.py

@ -9,12 +9,12 @@ Here is quick example of how to use one of the available mixins.
.. code:: python .. code:: python
from steam import SteamClient from steam import SteamClient
from stema.client.mixins.friends import Friends from stema.client.mixins.somemixing import SomeMixing
class MySteamClient(SteamClient, Friends): class CustomSteamClient(SteamClient, SomeMixing):
pass pass
client = MySteamClient() client = CustomSteamClient()
Making custom mixing is just as simple. Making custom mixing is just as simple.
@ -35,10 +35,10 @@ Making custom mixing is just as simple.
self.my_property = 42 self.my_property = 42
def my_method(self) def my_method(self)
pass print "Hello!"
class MySteamClient(SteamClient, Friends, MyMixin): class MySteamClient(SteamClient, MyMixin):
pass pass
client = MySteamClient() client = MySteamClient()
@ -47,5 +47,7 @@ Making custom mixing is just as simple.
>>> client.my_property >>> client.my_property
42 42
>>> client.my_method()
Hello!
""" """

Loading…
Cancel
Save