Modify typing.py slightly for RustPython

This commit is contained in:
Noah
2020-02-16 15:57:55 -06:00
parent e1bc0b9a81
commit 3dabd1f2e7

10
Lib/typing.py vendored
View File

@@ -2390,8 +2390,9 @@ class io:
BinaryIO = BinaryIO
io.__name__ = __name__ + '.io'
sys.modules[io.__name__] = io
# XXX RustPython TODO: editable type.__name__
# io.__name__ = __name__ + '.io'
sys.modules[__name__ + '.io'] = io
Pattern = _TypeAlias('Pattern', AnyStr, type(stdlib_re.compile('')),
@@ -2408,5 +2409,6 @@ class re:
Match = Match
re.__name__ = __name__ + '.re'
sys.modules[re.__name__] = re
# XXX RustPython TODO: editable type.__name__
# re.__name__ = __name__ + '.re'
sys.modules[__name__ + '.re'] = re