Browse Source

docs: fix typos for steam.client.mixins

pull/34/head
Rossen Georgiev 9 years ago
parent
commit
167cd6d6b3
  1. 7
      steam/client/mixins/__init__.py

7
steam/client/mixins/__init__.py

@ -1,7 +1,7 @@
""" """
All optional features are available as mixins for :class:`steam.client.SteamClient`. All optional features are available as mixins for :class:`steam.client.SteamClient`.
Using this approach the client can remain light yet flexible. Using this approach the client can remain light yet flexible.
Functionality can be added though inheritance depending on the use case. Functionality can be added through inheritance depending on the use case.
Here is quick example of how to use one of the available mixins. Here is quick example of how to use one of the available mixins.
@ -11,14 +11,12 @@ Here is quick example of how to use one of the available mixins.
from steam import SteamClient from steam import SteamClient
from stema.client.mixins.friends import Friends from stema.client.mixins.friends import Friends
class MySteamClient(SteamClient, Friends): class MySteamClient(SteamClient, Friends):
pass pass
client = MySteamClient() client = MySteamClient()
Making custom mixing is just as simple. Making custom mixing is just as simple.
.. warning:: .. warning::
@ -27,6 +25,7 @@ Making custom mixing is just as simple.
.. note:: .. note::
To avoid name collisions of non-public variables and methods, use `Private Variables <https://docs.python.org/2/tutorial/classes.html#private-variables-and-class-local-references>`_ To avoid name collisions of non-public variables and methods, use `Private Variables <https://docs.python.org/2/tutorial/classes.html#private-variables-and-class-local-references>`_
.. code:: python .. code:: python
class MyMixin(object): class MyMixin(object):
@ -44,6 +43,8 @@ Making custom mixing is just as simple.
client = MySteamClient() client = MySteamClient()
.. code:: python
>>> client.my_property >>> client.my_property
42 42

Loading…
Cancel
Save