]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-141510: Update `marshal` module comment with `frozendict` support (#153655)
authorsobolevn <mail@sobolevn.me>
Tue, 14 Jul 2026 06:50:45 +0000 (09:50 +0300)
committerGitHub <noreply@github.com>
Tue, 14 Jul 2026 06:50:45 +0000 (09:50 +0300)
Python/marshal.c

index 9688d426419c2fa29a2d9c225a9f8b652b880cb8..25353f6e6896249d0e4cf58ca6ddac21a90adf28 100644 (file)
@@ -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. */