From fa73fd473f00dd231f59e44798a3d00a46322658 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Tue, 17 Feb 2026 20:26:29 +0000 Subject: [PATCH] gh-141510: Update `test_xpickle` for `frozendict` (#144927) --- Lib/test/pickletester.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 5f627f047ea..c4460c2e44d 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):