gh-107422: Remove outdated TypedDict example from typing docs (#107436)

This commit is contained in:
Rakesh Sabale 2023-07-29 22:34:46 +05:30 committed by GitHub
parent d0dcd27d3a
commit 89fd4f4a3f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -2329,9 +2329,6 @@ types.
class XZ(X, Z): pass # raises TypeError
T = TypeVar('T')
class XT(X, Generic[T]): pass # raises TypeError
A ``TypedDict`` can be generic::
class Group[T](TypedDict):