From: sobolevn Date: Tue, 14 Jul 2026 06:50:45 +0000 (+0300) Subject: gh-141510: Update `marshal` module comment with `frozendict` support (#153655) X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37571ea82a0f8e39ad0c0b2012f23aa149dd238f;p=thirdparty%2FPython%2Fcpython.git gh-141510: Update `marshal` module comment with `frozendict` support (#153655) --- diff --git a/Python/marshal.c b/Python/marshal.c index 9688d426419c..25353f6e6896 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. */