From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Tue, 17 Feb 2026 20:26:29 +0000 (+0000) Subject: gh-141510: Update `test_xpickle` for `frozendict` (#144927) X-Git-Tag: v3.15.0a7~255 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fa73fd473f00dd231f59e44798a3d00a46322658;p=thirdparty%2FPython%2Fcpython.git gh-141510: Update `test_xpickle` for `frozendict` (#144927) --- diff --git a/Lib/test/pickletester.py b/Lib/test/pickletester.py index 5f627f047ea3..c4460c2e44d5 100644 --- a/Lib/test/pickletester.py +++ b/Lib/test/pickletester.py @@ -3167,6 +3167,7 @@ class AbstractPickleTests: '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):