From 0e945915b766991c5008077575def82a72e0d7ff Mon Sep 17 00:00:00 2001 From: Steve C Date: Thu, 10 May 2018 03:34:13 -0400 Subject: [PATCH] Fixes various documentation errors/inconsistencies Mostly dealing with permissions, also fixes Raw Events inclusion. --- discord/__init__.py | 1 + discord/abc.py | 11 +++++++---- discord/channel.py | 18 +++++++++--------- discord/client.py | 5 ++++- discord/guild.py | 31 ++++++++++++++++++++----------- discord/invite.py | 2 ++ discord/message.py | 20 ++++++++++++-------- discord/permissions.py | 4 ++-- discord/role.py | 4 ++-- 9 files changed, 59 insertions(+), 37 deletions(-) diff --git a/discord/__init__.py b/discord/__init__.py index 3f605a0a6..89cfdb1eb 100644 --- a/discord/__init__.py +++ b/discord/__init__.py @@ -44,6 +44,7 @@ from .player import * from .webhook import * from .voice_client import VoiceClient from .audit_logs import AuditLogChanges, AuditLogEntry, AuditLogDiff +from .raw_models import * import logging diff --git a/discord/abc.py b/discord/abc.py index c5b917ec4..3f88491cb 100644 --- a/discord/abc.py +++ b/discord/abc.py @@ -472,7 +472,7 @@ class GuildChannel: Deletes the channel. - You must have Manage Channel permission to use this. + You must have :attr:`~.Permissions.manage_channels` permission to use this. Parameters ----------- @@ -510,7 +510,7 @@ class GuildChannel: If the ``overwrite`` parameter is ``None``, then the permission overwrites are deleted. - You must have :attr:`Permissions.manage_roles` permission to use this. + You must have the :attr:`~Permissions.manage_roles` permission to use this. Examples ---------- @@ -592,6 +592,9 @@ class GuildChannel: Creates an instant invite. + You must have :attr:`~.Permissions.create_instant_invite` permission to + do this. + Parameters ------------ max_age : int @@ -630,7 +633,7 @@ class GuildChannel: Returns a list of all active instant invites from this channel. - You must have proper permissions to get this information. + You must have :attr:`~.Permissions.manage_guild` to get this information. Raises ------- @@ -860,7 +863,7 @@ class Messageable(metaclass=abc.ABCMeta): def history(self, *, limit=100, before=None, after=None, around=None, reverse=None): """Return an :class:`AsyncIterator` that enables receiving the destination's message history. - You must have :attr:`~Permissions.read_message_history` permissions to use this. + You must have :attr:`~.Permissions.read_message_history` permissions to use this. All parameters are optional. diff --git a/discord/channel.py b/discord/channel.py index 3fd867a4a..ac5f33830 100644 --- a/discord/channel.py +++ b/discord/channel.py @@ -130,7 +130,7 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): Edits the channel. - You must have the :attr:`Permissions.manage_channel` permission to + You must have the :attr:`~Permissions.manage_channels` permission to use this. Parameters @@ -177,8 +177,8 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): You cannot bulk delete more than 100 messages or messages that are older than 14 days old. - You must have :attr:`Permissions.manage_messages` permission to use - this. + You must have the :attr:`~Permissions.manage_messages` permission to + use this. Usable only by bot accounts. @@ -222,10 +222,10 @@ class TextChannel(discord.abc.Messageable, discord.abc.GuildChannel, Hashable): ``check``. If a ``check`` is not provided then all messages are deleted without discrimination. - You must have :attr:`Permissions.manage_messages` permission to delete - messages even if they are your own (unless you are a user account). - The :attr:`Permissions.read_message_history` permission is also needed - to retrieve message history. + You must have the :attr:`~Permissions.manage_messages` permission to + delete messages even if they are your own (unless you are a user + account). The :attr:`~Permissions.read_message_history` permission is + also needed to retrieve message history. Internally, this employs a different number of strategies depending on the conditions met such as if a bulk delete is possible or if @@ -467,7 +467,7 @@ class VoiceChannel(discord.abc.Connectable, discord.abc.GuildChannel, Hashable): Edits the channel. - You must have the :attr:`Permissions.manage_channel` permission to + You must have the :attr:`~Permissions.manage_channels` permission to use this. Parameters @@ -564,7 +564,7 @@ class CategoryChannel(discord.abc.GuildChannel, Hashable): Edits the channel. - You must have the :attr:`Permissions.manage_channel` permission to + You must have the :attr:`~Permissions.manage_channels` permission to use this. Parameters diff --git a/discord/client.py b/discord/client.py index 70395466a..0434d1e2f 100644 --- a/discord/client.py +++ b/discord/client.py @@ -912,7 +912,7 @@ class Client: def get_invite(self, url): """|coro| - Gets a :class:`Invite` from a discord.gg URL or ID. + Gets an :class:`Invite` from a discord.gg URL or ID. Note ------ @@ -948,6 +948,9 @@ class Client: Revokes an :class:`Invite`, URL, or ID to an invite. + You must have the :attr:`~Permissions.manage_channels` permission in + the associated guild to do this. + Parameters ---------- invite diff --git a/discord/guild.py b/discord/guild.py index 93ef052a9..d49f7780f 100644 --- a/discord/guild.py +++ b/discord/guild.py @@ -364,7 +364,7 @@ class Guild(Hashable): @property def members(self): - """List[:class:`Member`]: A list of members that belongs to this guild.""" + """List[:class:`Member`]: A list of members that belong to this guild.""" return list(self._members.values()) def get_member(self, user_id): @@ -549,7 +549,8 @@ class Guild(Hashable): Creates a :class:`TextChannel` for the guild. - Note that you need the proper permissions to create the channel. + Note that you need the :attr:`~Permissions.manage_channels` permission + to create the channel. The ``overwrites`` parameter can be used to create a 'secret' channel upon creation. This parameter expects a :class:`dict` of @@ -807,7 +808,7 @@ class Guild(Hashable): with a ``user`` and ``reason`` field. See :meth:`bans` for more information. - You must have :attr:`~Permissions.ban_members` permission + You must have the :attr:`~Permissions.ban_members` permission to get this information. Parameters @@ -841,12 +842,12 @@ class Guild(Hashable): Retrieves all the users that are banned from the guild. - This coroutine returns a :class:`list` of BanEntry objects. Which is a + This coroutine returns a :class:`list` of BanEntry objects, which is a namedtuple with a ``user`` field to denote the :class:`User` that got banned along with a ``reason`` field specifying why the user was banned that could be set to ``None``. - You must have :attr:`~Permissions.ban_members` permission + You must have the :attr:`~Permissions.ban_members` permission to get this information. Raises @@ -972,7 +973,8 @@ class Guild(Hashable): Returns a list of all active instant invites from the guild. - You must have :attr:`~Permissions.manage_guild` to get this information. + You must have the :attr:`~Permissions.manage_guild` permission to get + this information. Raises ------- @@ -1005,6 +1007,9 @@ class Guild(Hashable): There is currently a limit of 50 local emotes per guild. + You must have the :attr:`~Permissions.manage_emojis` permission to + do this. + Note that bot accounts can only edit and delete emojis they have created. Parameters @@ -1042,6 +1047,9 @@ class Guild(Hashable): All fields are optional. + You must have the :attr:`~Permissions.manage_roles` permission to + do this. + Parameters ----------- name: str @@ -1108,7 +1116,7 @@ class Guild(Hashable): The user must meet the :class:`abc.Snowflake` abc. - You must have :attr:`Permissions.kick_members` permissions to + You must have the :attr:`~Permissions.kick_members` permission to do this. Parameters @@ -1135,7 +1143,7 @@ class Guild(Hashable): The user must meet the :class:`abc.Snowflake` abc. - You must have :attr:`Permissions.ban_members` permissions to + You must have the :attr:`~Permissions.ban_members` permission to do this. Parameters @@ -1165,7 +1173,7 @@ class Guild(Hashable): The user must meet the :class:`abc.Snowflake` abc. - You must have :attr:`Permissions.ban_members` permissions to + You must have the :attr:`~Permissions.ban_members` permission to do this. Parameters @@ -1193,7 +1201,8 @@ class Guild(Hashable): The guild must be partnered, i.e. have 'VANITY_URL' in :attr:`~Guild.features`. - You must have :attr:`Permissions.manage_guild` to use this as well. + You must have the :attr:`~Permissions.manage_guild` permission to use + this as well. Returns -------- @@ -1246,7 +1255,7 @@ class Guild(Hashable): def audit_logs(self, *, limit=100, before=None, after=None, reverse=None, user=None, action=None): """Return an :class:`AsyncIterator` that enables receiving the guild's audit logs. - You must have :attr:`Permissions.view_audit_logs` permission to use this. + You must have the :attr:`~Permissions.view_audit_log` permission to use this. Parameters ----------- diff --git a/discord/invite.py b/discord/invite.py index 21bf4a89d..4acbf279c 100644 --- a/discord/invite.py +++ b/discord/invite.py @@ -140,6 +140,8 @@ class Invite(Hashable): Revokes the instant invite. + You must have the :attr:`~Permissions.manage_channels` permission to do this. + Parameters ----------- reason: Optional[str] diff --git a/discord/message.py b/discord/message.py index e16cc9206..55a1ee3f3 100644 --- a/discord/message.py +++ b/discord/message.py @@ -606,8 +606,10 @@ class Message: def pin(self): """|coro| - Pins the message. You must have :attr:`~Permissions.manage_messages` - permissions to do this in a non-private channel context. + Pins the message. + + You must have the :attr:`~Permissions.manage_messages` permission to do + this in a non-private channel context. Raises ------- @@ -627,8 +629,10 @@ class Message: def unpin(self): """|coro| - Unpins the message. You must have :attr:`~Permissions.manage_messages` - permissions to do this in a non-private channel context. + Unpins the message. + + You must have the :attr:`~Permissions.manage_messages` permission to do + this in a non-private channel context. Raises ------- @@ -651,8 +655,9 @@ class Message: The emoji may be a unicode emoji or a custom guild :class:`Emoji`. - You must have the :attr:`~Permissions.add_reactions` and - :attr:`~Permissions.read_message_history` permissions to use this. + You must have the :attr:`~Permissions.read_message_history` permission + to use this. If nobody else has reacted to the message using this + emoji, the :attr:`~Permissions.add_reactions` permission is required. Parameters ------------ @@ -741,8 +746,7 @@ class Message: Removes all the reactions from the message. - You need :attr:`~Permissions.manage_messages` permission - to use this. + You need the :attr:`~Permissions.manage_messages` permission to use this. Raises -------- diff --git a/discord/permissions.py b/discord/permissions.py index 12434c78f..f72f27f5e 100644 --- a/discord/permissions.py +++ b/discord/permissions.py @@ -258,7 +258,7 @@ class Permissions: def manage_channels(self): """Returns True if a user can edit, delete, or create channels in the guild. - This also corresponds to the "manage channel" channel-specific override.""" + This also corresponds to the "Manage Channel" channel-specific override.""" return self._bit(4) @manage_channels.setter @@ -453,7 +453,7 @@ class Permissions: def manage_roles(self): """Returns True if a user can create or edit roles less than their role's position. - This also corresponds to the "manage permissions" channel-specific override. + This also corresponds to the "Manage Permissions" channel-specific override. """ return self._bit(28) diff --git a/discord/role.py b/discord/role.py index 6cb79c69e..3e35d8af9 100644 --- a/discord/role.py +++ b/discord/role.py @@ -204,7 +204,7 @@ class Role(Hashable): Edits the role. - You must have the :attr:`Permissions.manage_roles` permission to + You must have the :attr:`~Permissions.manage_roles` permission to use this. All fields are optional. @@ -265,7 +265,7 @@ class Role(Hashable): Deletes the role. - You must have the :attr:`Permissions.manage_roles` permission to + You must have the :attr:`~Permissions.manage_roles` permission to use this. Parameters