Message385262
Hello, this issue is a byproduct of issue42195. It has already been fixed on Python 3.10, and on Python 3.9.2 (which isn't out yet). You can see the what's new for it here https://docs.python.org/3/whatsnew/3.9.html#notable-changes-in-python-3-9-2.
The expected release date for Python 3.9.2 is Monday, 2021-02-15 according to PEP 596 https://www.python.org/dev/peps/pep-0596/.
For now, I guess you'll have to use the old typing.Callable, then update it in newer versions of Python.
On Python 3.10a4:
>>> from typing import Optional
>>> from collections.abc import Callable
>>> Optional[Callable[[bytes], bytes]]
typing.Optional[collections.abc.Callable[[bytes], bytes]] |
|
Date |
User |
Action |
Args |
2021-01-19 14:20:04 | kj | set | recipients:
+ kj, Ofekmeister |
2021-01-19 14:20:04 | kj | set | messageid: <1611066004.82.0.167009464522.issue42965@roundup.psfhosted.org> |
2021-01-19 14:20:04 | kj | link | issue42965 messages |
2021-01-19 14:20:04 | kj | create | |
|