https://github.com/python/cpython/commit/fa73fd473f00dd231f59e44798a3d00a46322658
commit: fa73fd473f00dd231f59e44798a3d00a46322658
branch: main
author: Stan Ulbrych <[email protected]>
committer: vstinner <[email protected]>
date: 2026-02-17T21:26:29+01:00
summary:

gh-141510: Update `test_xpickle` for `frozendict` (#144927)

files:
M Lib/test/pickletester.py

diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py
index 5f627f047ea319..c4460c2e44d578 100644
--- a/Lib/test/pickletester.py
+++ b/Lib/test/pickletester.py
@@ -3167,6 +3167,7 @@ def test_builtin_types(self):
             'bytes': (3, 0),
             'BuiltinImporter': (3, 3),
             'str': (3, 4),  # not interoperable with Python < 3.4
+            'frozendict': (3, 15),
         }
         for t in builtins.__dict__.values():
             if isinstance(t, type) and not issubclass(t, BaseException):

_______________________________________________
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]

Reply via email to