Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace \* with \\* in docstrings #68

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
10 changes: 5 additions & 5 deletions blinker/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ def connect(self, receiver, sender=ANY, weak=True):
r"""Connect *receiver* to signal events sent by *sender*.

:param receiver: A callable. Will be invoked by :meth:`send` with
`sender=` as a single positional argument and any \*\*kwargs that
`sender=` as a single positional argument and any \\*\\*kwargs that
were provided to a call to :meth:`send`.

:param sender: Any object or :obj:`ANY`, defaults to ``ANY``.
Expand Down Expand Up @@ -171,7 +171,7 @@ def connect_via(self, sender, weak=False):
:meth:`connect`, this defaults to False.

The decorated function will be invoked by :meth:`send` with
`sender=` as a single positional argument and any \*\*kwargs that
`sender=` as a single positional argument and any \\*\\*kwargs that
were provided to the call to :meth:`send`.


Expand Down Expand Up @@ -239,15 +239,15 @@ def temporarily_connected_to(self, receiver, sender=ANY):
return self.connected_to(receiver, sender)

def send(self, *sender, **kwargs):
r"""Emit this signal on behalf of *sender*, passing on \*\*kwargs.
r"""Emit this signal on behalf of *sender*, passing on \\*\\*kwargs.

Returns a list of 2-tuples, pairing receivers with their return
value. The ordering of receiver notification is undefined.

:param \*sender: Any object or ``None``. If omitted, synonymous
:param \\*sender: Any object or ``None``. If omitted, synonymous
with ``None``. Only accepts one positional argument.

:param \*\*kwargs: Data to be sent to receivers.
:param \\*\\*kwargs: Data to be sent to receivers.

"""
if not self.receivers:
Expand Down