diff options
author | sterliakov <50529348+sterliakov@users.noreply.github.com> | 2023-08-30 01:11:31 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-08-30 01:11:31 (GMT) |
commit | 14ec0bb7c363def917f768b76f334146a3cddd84 (patch) | |
tree | b826030be1b60a4a90acad220653b40a97b0952a | |
parent | d08d49dd09917531b113486976b03b5287b574f1 (diff) | |
download | cpython-14ec0bb7c363def917f768b76f334146a3cddd84.zip cpython-14ec0bb7c363def917f768b76f334146a3cddd84.tar.gz cpython-14ec0bb7c363def917f768b76f334146a3cddd84.tar.bz2 |
Mention Ellipsis pickling in the docs (#103660)
-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 ba00ba2..93387fb 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; |