Skip to content

Commit

Permalink
docs: version when blocking arg is added to MockIRCServer methods
Browse files Browse the repository at this point in the history
  • Loading branch information
dgw committed May 12, 2021
1 parent c5bc66f commit 1f8847a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions sopel/tests/mocks.py
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,10 @@ def channel_joined(self, channel, users=None, blocking=None):
this step. If not specified, this :class:`MockIRCServer` instance's
``join_threads`` argument will be obeyed.
.. versionadded:: 7.1
The ``blocking`` parameter.
.. seealso::
The ``join_threads`` argument to :class:`MockIRCServer`.
Expand Down Expand Up @@ -157,6 +161,10 @@ def mode_set(self, channel, flags, users, blocking=None):
this step. If not specified, this :class:`MockIRCServer` instance's
``join_threads`` argument will be obeyed.
.. versionadded:: 7.1
The ``blocking`` parameter.
.. seealso::
The ``join_threads`` argument to :class:`MockIRCServer`.
Expand Down Expand Up @@ -194,6 +202,10 @@ def join(self, user, channel, blocking=None):
this step. If not specified, this :class:`MockIRCServer` instance's
``join_threads`` argument will be obeyed.
.. versionadded:: 7.1
The ``blocking`` parameter.
.. seealso::
The ``join_threads`` argument to :class:`MockIRCServer`.
Expand Down Expand Up @@ -229,6 +241,10 @@ def say(self, user, channel, text, blocking=None):
this step. If not specified, this :class:`MockIRCServer` instance's
``join_threads`` argument will be obeyed.
.. versionadded:: 7.1
The ``blocking`` parameter.
.. seealso::
The ``join_threads`` argument to :class:`MockIRCServer`.
Expand Down Expand Up @@ -263,6 +279,10 @@ def pm(self, user, text, blocking=None):
this step. If not specified, this :class:`MockIRCServer` instance's
``join_threads`` argument will be obeyed.
.. versionadded:: 7.1
The ``blocking`` parameter.
.. seealso::
The ``join_threads`` argument to :class:`MockIRCServer`.
Expand Down

0 comments on commit 1f8847a

Please sign in to comment.