Skip to content

Commit 34913b1

Browse files
Fix test_xpickle failing with introduction of frozendict
1 parent d1505b5 commit 34913b1

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

Lib/test/pickletester.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3167,6 +3167,7 @@ def test_builtin_types(self):
31673167
'bytes': (3, 0),
31683168
'BuiltinImporter': (3, 3),
31693169
'str': (3, 4), # not interoperable with Python < 3.4
3170+
'frozendict': (3, 15),
31703171
}
31713172
for t in builtins.__dict__.values():
31723173
if isinstance(t, type) and not issubclass(t, BaseException):

0 commit comments

Comments
 (0)