Clarify a sentence that mentioned LoggedVar[t].

This commit is contained in:
Guido van Rossum 2016-05-19 10:15:48 -07:00
parent 92eb68bca0
commit e70675917d
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ takes a single type parameter ``T``. This also makes ``T`` valid as
a type within the class body.
The ``Generic`` base class uses a metaclass that defines ``__getitem__``
so that ``LoggedVar[t]`` is valid as a type::
so that e.g. ``LoggedVar[int]`` is valid as a type::
from typing import Iterable