ilevkivskyi / typing_inspect

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

import typing._TypedDictMeta in Python 3.9 #68

Closed bnavigator closed 3 years ago

bnavigator commented 3 years ago

typing_extensions just re-exports typing in Python3.9. type(typing.TypedDict) is just a function in Python3.9, just as in typing_extensions.

Fixes #65

bnavigator commented 3 years ago

See https://github.com/bnavigator/typing_inspect/runs/2159879881 for a sucessful Travis CI run on Python 3.9 when #68 and #69 are combined.

ilevkivskyi commented 3 years ago

Thanks! The referenced issue number looks wrong. I think it should be #65, going to edit before merging.

bnavigator commented 3 years ago

Nope I was aware that #65 is not fully complete by this and #69. But you are right, #64 was fixed by #69, not this one.