]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
gh-141510: Update `test_xpickle` for `frozendict` (#144927)
authorStan Ulbrych <89152624+StanFromIreland@users.noreply.github.com>
Tue, 17 Feb 2026 20:26:29 +0000 (20:26 +0000)
committerGitHub <noreply@github.com>
Tue, 17 Feb 2026 20:26:29 +0000 (21:26 +0100)
Lib/test/pickletester.py

index 5f627f047ea3195d3df51c1a39604c19f7bdb98a..c4460c2e44d578c240fd98fb2280dbf3a90e950b 100644 (file)
@@ -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):