From 58975b4c0f7cb1f3b01f9e271016f5731948918a Mon Sep 17 00:00:00 2001 From: sobolevn Date: Mon, 13 Jul 2026 12:51:13 +0300 Subject: [PATCH] Update `marshal` module comment with `frozendict` support --- Python/marshal.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Python/marshal.c b/Python/marshal.c index 9688d426419c2f..25353f6e689624 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. */