From 4f26796cf368d24edadbb3d62e052e6aa4ddc820 2021-12-20 19:04:08 From: Ben Greiner Date: 2021-12-20 19:04:08 Subject: [PATCH] fix xxlimited_35 import name --- diff --git a/IPython/lib/tests/test_pretty.py b/IPython/lib/tests/test_pretty.py index 9ce17f4..77941f1 100644 --- a/IPython/lib/tests/test_pretty.py +++ b/IPython/lib/tests/test_pretty.py @@ -127,7 +127,7 @@ def test_pprint_heap_allocated_type(): if sys.version_info < (3, 10): import xxlimited else: - import xxlimited_35 + import xxlimited_35 as xxlimited output = pretty.pretty(xxlimited.Null) nt.assert_equal(output, 'xxlimited.Null')