Change docstrings to raw-strings

This commit is contained in:
BeatButton
2018-09-09 09:19:50 -06:00
committed by Rapptz
parent 5131acd675
commit a4d1599ce9
14 changed files with 29 additions and 29 deletions

View File

@ -234,7 +234,7 @@ class BotBase(GroupMixin):
# global check registration
def check(self, func):
"""A decorator that adds a global check to the bot.
r"""A decorator that adds a global check to the bot.
A global check is similar to a :func:`.check` that is applied
on a per command basis except it is run before any command checks
@ -302,7 +302,7 @@ class BotBase(GroupMixin):
pass
def check_once(self, func):
"""A decorator that adds a "call once" global check to the bot.
r"""A decorator that adds a "call once" global check to the bot.
Unlike regular global checks, this one is called only once
per :meth:`.Command.invoke` call.
@ -393,7 +393,7 @@ class BotBase(GroupMixin):
return coro
def after_invoke(self, coro):
"""A decorator that registers a coroutine as a post-invoke hook.
r"""A decorator that registers a coroutine as a post-invoke hook.
A post-invoke hook is called directly after the command is
called. This makes it a useful function to clean-up database
@ -810,7 +810,7 @@ class BotBase(GroupMixin):
return ret
async def get_context(self, message, *, cls=Context):
"""|coro|
r"""|coro|
Returns the invocation context from the message.

View File

@ -28,7 +28,7 @@ import discord.abc
import discord.utils
class Context(discord.abc.Messageable):
"""Represents the context in which a command is being invoked under.
r"""Represents the context in which a command is being invoked under.
This class contains a lot of meta data to help you understand more about
the invocation context. This class is not created manually and is instead
@ -87,7 +87,7 @@ class Context(discord.abc.Messageable):
self._state = self.message._state
async def invoke(self, *args, **kwargs):
"""|coro|
r"""|coro|
Calls a command with the arguments given.
@ -219,6 +219,6 @@ class Context(discord.abc.Messageable):
@property
def voice_client(self):
"""Optional[:class:`VoiceClient`]: A shortcut to :attr:`Guild.voice_client`\, if applicable."""
r"""Optional[:class:`VoiceClient`]: A shortcut to :attr:`Guild.voice_client`\, if applicable."""
g = self.guild
return g.voice_client if g else None

View File

@ -102,7 +102,7 @@ class _CaseInsensitiveDict(dict):
super().__setitem__(k.lower(), v)
class Command:
"""A class that implements the protocol for a bot text command.
r"""A class that implements the protocol for a bot text command.
These are not created manually, instead they are created via the
decorator or functional interface.
@ -1078,7 +1078,7 @@ def group(name=None, **attrs):
return command(name=name, cls=Group, **attrs)
def check(predicate):
"""A decorator that adds a check to the :class:`.Command` or its
r"""A decorator that adds a check to the :class:`.Command` or its
subclasses. These checks could be accessed via :attr:`.Command.checks`.
These checks should be predicates that take in a single parameter taking
@ -1169,7 +1169,7 @@ def has_role(name):
return check(predicate)
def has_any_role(*names):
"""A :func:`.check` that is added that checks if the member invoking the
r"""A :func:`.check` that is added that checks if the member invoking the
command has **any** of the roles specified. This means that if they have
one out of the three roles specified, then this check will return `True`.

View File

@ -35,7 +35,7 @@ __all__ = ['CommandError', 'MissingRequiredArgument', 'BadArgument',
'BadUnionArgument']
class CommandError(DiscordException):
"""The base exception type for all command related errors.
r"""The base exception type for all command related errors.
This inherits from :exc:`discord.DiscordException`.