Oops, should use ... not None.

This commit is contained in:
Guido van Rossum
2016-08-02 11:06:52 -07:00
parent 2bb6856456
commit 1e1694276c

View File

@@ -44,7 +44,7 @@ if sys.version_info < (3,):
# TODO: Change to a class with __getattr__ and __setattr__
# once mypy supports universal __setattr__.
# See https://github.com/python/mypy/issues/521
local = None # type: Any
local = ... # type: Any
class Thread: