diff options
author | Petr Viktorin <encukou@gmail.com> | 2024-11-15 12:48:57 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-11-15 12:48:57 (GMT) |
commit | d00f7b1b9d12dd6f29d7616217900785c4f6674d (patch) | |
tree | fa715cb171215073bf48f0acabc2c411f2fa80fb /Misc/NEWS.d/next | |
parent | e17486982ca7b40cc8fbc1c76ad25facc5e76349 (diff) | |
download | cpython-d00f7b1b9d12dd6f29d7616217900785c4f6674d.zip cpython-d00f7b1b9d12dd6f29d7616217900785c4f6674d.tar.gz cpython-d00f7b1b9d12dd6f29d7616217900785c4f6674d.tar.bz2 |
gh-125063: marshal: Add version 5, improve documentation (GH-126829)
* Document that slices can be marshalled
* Deduplicate and organize the list of supported types
in docs
* Organize the type code list in marshal.c, to make
it more obvious that this is a versioned format
* Back-fill some historical info
Co-authored-by: Michael Droettboom <mdboom@gmail.com>
Diffstat (limited to 'Misc/NEWS.d/next')
-rw-r--r-- | Misc/NEWS.d/next/Library/2024-11-14-13-16-20.gh-issue-125063.kJ-WnH.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Library/2024-11-14-13-16-20.gh-issue-125063.kJ-WnH.rst b/Misc/NEWS.d/next/Library/2024-11-14-13-16-20.gh-issue-125063.kJ-WnH.rst new file mode 100644 index 0000000..5ddf412 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2024-11-14-13-16-20.gh-issue-125063.kJ-WnH.rst @@ -0,0 +1,2 @@ +:mod:`marshal` now supports :class:`slice` objects. The marshal format +version was increased to 5. |