We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 837166f commit 1797508Copy full SHA for 1797508
Lib/test/pickletester.py
@@ -3202,6 +3202,7 @@ def test_builtin_exceptions(self):
3202
'ExceptionGroup': (3, 11),
3203
'_IncompleteInputError': (3, 13),
3204
'PythonFinalizationError': (3, 13),
3205
+ 'ImportCycleError': (3, 15),
3206
}
3207
for t in builtins.__dict__.values():
3208
if isinstance(t, type) and issubclass(t, BaseException):
@@ -3228,6 +3229,7 @@ def test_builtin_functions(self):
3228
3229
'breakpoint': (3, 7),
3230
'aiter': (3, 10),
3231
'anext': (3, 10),
3232
+ '__lazy_import__': (3, 15),
3233
3234
3235
if isinstance(t, types.BuiltinFunctionType):
0 commit comments