Fix reStructuredText typo in NEWS.d. (GH-23800)

This commit is contained in:
Julien Palard 2020-12-16 16:22:19 +01:00 committed by GitHub
parent fcc6935384
commit 37caeb172b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -6,6 +6,6 @@ for :class:`collections.abc.Callable` are now flattened while
``collections.abc.Callable``'s ``__class_getitem__`` will now return a subclass
of ``types.GenericAlias``. Tests for typing were also updated to not subclass
things like ``Callable[..., T]`` as that is not a valid base class. Finally,
both ``Callable``s no longer validate their ``argtypes``, in
both ``Callable``\ s no longer validate their ``argtypes``, in
``Callable[[argtypes], resulttype]`` to prepare for :pep:`612`. Patch by Ken Jin.