]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
Mention Ellipsis pickling in the docs (#103660)
authorsterliakov <50529348+sterliakov@users.noreply.github.com>
Wed, 30 Aug 2023 01:11:31 +0000 (04:11 +0300)
committerGitHub <noreply@github.com>
Wed, 30 Aug 2023 01:11:31 +0000 (01:11 +0000)
Doc/library/pickle.rst

index ba00ba29f5ba48247168a65560e3b9e06ec239b0..93387fb0b4503821abbc0189430f63c0d3587cf9 100644 (file)
@@ -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;