Add intersphinx

This commit is contained in:
Tobotimus
2018-01-06 17:21:56 -05:00
committed by Rapptz
parent 0ef866a704
commit 3112e1c17e
37 changed files with 267 additions and 268 deletions

View File

@ -81,11 +81,11 @@ class HTTPException(DiscordException):
__ http://aiohttp.readthedocs.org/en/stable/client_reference.html#aiohttp.ClientResponse
text: str
text: :class:`str`
The text of the error. Could be an empty string.
status: int
status: :class:`int`
The status code of the HTTP request.
code: int
code: :class:`int`
The Discord specific error code for the failure.
"""
@ -150,11 +150,11 @@ class ConnectionClosed(ClientException):
Attributes
-----------
code: int
code: :class:`int`
The close code of the websocket.
reason: str
reason: :class:`str`
The reason provided for the closure.
shard_id: Optional[int]
shard_id: Optional[:class:`int`]
The shard ID that got closed if applicable.
"""
def __init__(self, original, *, shard_id):