From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 30 Aug 2023 13:20:45 +0000 (-0700) Subject: [3.12] Mention Ellipsis pickling in the docs (GH-103660) (#108661) X-Git-Tag: v3.12.0rc2~39 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=1d6d05aa8283a4ad3376ac62189471869bd43826;p=thirdparty%2FPython%2Fcpython.git [3.12] Mention Ellipsis pickling in the docs (GH-103660) (#108661) Mention Ellipsis pickling in the docs (GH-103660) (cherry picked from commit 14ec0bb7c363def917f768b76f334146a3cddd84) Co-authored-by: sterliakov <50529348+sterliakov@users.noreply.github.com> --- diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 79476b04cd91..d6be4ba33fa8 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;