https://github.com/python/cpython/commit/35975878e60874407548539897b03e72ba28c61c commit: 35975878e60874407548539897b03e72ba28c61c branch: 3.15 author: Miss Islington (bot) <[email protected]> committer: sobolevn <[email protected]> date: 2026-07-14T07:24:56Z summary:
[3.15] gh-141510: Update `marshal` module comment with `frozendict` support (GH-153655) (#153681) gh-141510: Update `marshal` module comment with `frozendict` support (GH-153655) (cherry picked from commit 37571ea82a0f8e39ad0c0b2012f23aa149dd238f) Co-authored-by: sobolevn <[email protected]> files: M Python/marshal.c diff --git a/Python/marshal.c b/Python/marshal.c index 9688d426419c2fa..25353f6e6896249 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -1,8 +1,8 @@ /* Write Python objects to files and read them back. This is primarily intended for writing and reading compiled Python code, - even though dicts, lists, sets and frozensets, not commonly seen in - code objects, are supported. + even though dicts and frozendicts, lists, sets and frozensets, + not commonly seen in code objects, are supported. Version 3 of this protocol properly supports circular links and sharing. */ _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3//lists/python-checkins.python.org Member address: [email protected]
