diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-05-02 06:38:01 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-05-02 06:38:01 (GMT) |
commit | 531d1e541284bfd7944f8c66a5e8c3c3234afaff (patch) | |
tree | 877a425117074ca43bc46db97a145a53f34dcebb /Misc | |
parent | d2baff4301387e232495491f7291903cc1217d21 (diff) | |
download | cpython-531d1e541284bfd7944f8c66a5e8c3c3234afaff.zip cpython-531d1e541284bfd7944f8c66a5e8c3c3234afaff.tar.gz cpython-531d1e541284bfd7944f8c66a5e8c3c3234afaff.tar.bz2 |
bpo-39435: Make the first argument of pickle.loads() positional-only. (GH-19846)
It was positional-only de facto: documentation and two implementations
used three different name.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Library/2020-05-01-23-24-25.bpo-39435.mgb6ib.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2020-05-01-23-24-25.bpo-39435.mgb6ib.rst b/Misc/NEWS.d/next/Library/2020-05-01-23-24-25.bpo-39435.mgb6ib.rst new file mode 100644 index 0000000..2a516a5 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2020-05-01-23-24-25.bpo-39435.mgb6ib.rst @@ -0,0 +1 @@ +The first argument of :func:`pickle.loads` is now positional-only. |