diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2023-08-30 13:20:45 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-30 13:20:45 (GMT) |
commit | 1d6d05aa8283a4ad3376ac62189471869bd43826 (patch) | |
tree | 1ae3ccf72903884e32bf25007af3bd2fc7c04701 | |
parent | 036dd6958a14014947904914065119123430df95 (diff) | |
download | cpython-1d6d05aa8283a4ad3376ac62189471869bd43826.zip cpython-1d6d05aa8283a4ad3376ac62189471869bd43826.tar.gz cpython-1d6d05aa8283a4ad3376ac62189471869bd43826.tar.bz2 |
[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>
-rw-r--r-- | Doc/library/pickle.rst | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Doc/library/pickle.rst b/Doc/library/pickle.rst index 79476b0..d6be4ba 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; |