From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Wed, 30 Aug 2023 06:04:42 +0000 (-0700) Subject: [3.11] Mention Ellipsis pickling in the docs (GH-103660) (#108662) X-Git-Tag: v3.11.6~169 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=a2c05a414dc049bd54dc265cfbe957789a20f499;p=thirdparty%2FPython%2Fcpython.git [3.11] Mention Ellipsis pickling in the docs (GH-103660) (#108662) 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;