ilevkivskyi / typing_inspect

Runtime inspection utilities for Python typing module
MIT License
350 stars 35 forks source link

Test failure on 3.14 #108

Open limburgher opened 1 week ago

limburgher commented 1 week ago

=================================== FAILURES =================================== __ GetUtilityTestCase.test_typed_dict_mypy_extension ___

self =

@skipUnless(PY36, "Python 3.6 required")
def test_typed_dict_mypy_extension(self):
    TDOld = METypedDict("TDOld", {'x': int, 'y': int})
  self.assertEqual(typed_dict_keys(TDM), {'x': int, 'y': int})

E AssertionError: {} != {'x': <class 'int'>, 'y': <class 'int'>} E - {} E + {'x': <class 'int'>, 'y': <class 'int'>}

test_typing_inspect.py:497: AssertionError

See: https://bugzilla.redhat.com/show_bug.cgi?id=2325455