From: sterliakov <50529348+sterliakov@users.noreply.github.com> Date: Wed, 30 Aug 2023 01:11:31 +0000 (+0300) Subject: Mention Ellipsis pickling in the docs (#103660) X-Git-Tag: v3.13.0a1~700 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=14ec0bb7c363def917f768b76f334146a3cddd84;p=thirdparty%2FPython%2Fcpython.git Mention Ellipsis pickling in the docs (#103660) --- diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index ba00ba29f5ba..93387fb0b450 100644 --- a/Doc/library/pickle.rst +++ b/Doc/library/pickle.rst @@ -494,7 +494,8 @@ What can be pickled and unpickled? The following types can be pickled: -* ``None``, ``True``, and ``False``; +* built-in constants (``None``, ``True``, ``False``, ``Ellipsis``, and + ``NotImplemented``); * integers, floating-point numbers, complex numbers;