Oh, note that Abdulla said: "we can annotate our **functions** with “Any" right away without the extra step."
Python 3.9.0 (default, Nov 21 2020, 14:01:55) >>> from __future__ import annotations >>> def foo(a: Any, b: Dict[Any, Any]) -> Any: pass -- Inada Naoki <[email protected]> _______________________________________________ Python-ideas mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-ideas.python.org/ Message archived at https://mail.python.org/archives/list/[email protected]/message/VYGGSSP22LUD6L2C244RTCUGYYIRENGL/ Code of Conduct: http://python.org/psf/codeofconduct/
