Browse Source

Document and export MISSING sentinel

pull/7946/head
Rapptz 3 years ago
parent
commit
500bf77103
  1. 3
      discord/utils.py
  2. 6
      docs/api.rst

3
discord/utils.py

@ -88,12 +88,15 @@ __all__ = (
'escape_mentions',
'as_chunks',
'format_dt',
'MISSING',
)
DISCORD_EPOCH = 1420070400000
class _MissingSentinel:
__slots__ = ()
def __eq__(self, other):
return False

6
docs/api.rst

@ -1311,6 +1311,12 @@ Utility Functions
.. autofunction:: discord.utils.as_chunks
.. data:: MISSING
A type safe sentinel used in the library to represent something as missing. Used to distinguish from ``None`` values.
.. versionadded:: 2.0
.. _discord-api-enums:
Enumerations

Loading…
Cancel
Save