mirror of
https://github.com/python/cpython.git
synced 2026-04-05 03:21:05 +00:00
Issue #24164: Objects that need calling `__new__` with keyword arguments,
can now be pickled using pickle protocols older than protocol version 4.
This commit is contained in:
parent
4e96df3b59
commit
0d554d7ef1
6 changed files with 97 additions and 32 deletions
|
|
@ -112,6 +112,15 @@ indexers. For example: ``subscript[0:10:2] == slice(0, 10, 2)``
|
|||
(Contributed by Joe Jevnik in :issue:`24379`.)
|
||||
|
||||
|
||||
pickle
|
||||
------
|
||||
|
||||
Objects that need calling ``__new__`` with keyword arguments, can now be pickled
|
||||
using :ref:`pickle protocols <pickle-protocols>` older than protocol version 4.
|
||||
Protocol version 4 already supports this case. (Contributed by Serhiy
|
||||
Storchaka in :issue:`24164`.)
|
||||
|
||||
|
||||
rlcomplete
|
||||
----------
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue