If I compile a regex
>>> type(re.compile(""))
<class '_sre.SRE_Pattern'>
And want to pass that regex to a function and use Mypy to type check
def my_func(compiled_regex: _sre.SRE_Pattern):
I'm running into this problem
>>> import _sre
>>> from _sre import SRE_Pattern
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
ImportError: cannot import name 'SRE_Pattern'
It seems that you can import _sre
but for some reason SRE_Pattern
isn't importable.