summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMiss Skeleton (bot) <31488909+miss-islington@users.noreply.github.com>2020-10-03 15:33:30 -0700
committerƁukasz Langa <lukasz@langa.pl>2020-10-04 17:30:50 +0200
commitfd510e365ec08d4c2cb2faafcf82ab17547ebef3 (patch)
treeb63cc007d7a2d86a5b029b056474c338b944e91d
parentd96078b5e4f26462becbc07b862ee357c46c8f7e (diff)
downloadcpython-git-fd510e365ec08d4c2cb2faafcf82ab17547ebef3.tar.gz
[doc] Use list[int] instead of List[int] (etc.) in a few more places (GH-22524)
This changes a few occurrences left behind by GH-22340. Automerge-Triggered-By: @gvanrossum (cherry picked from commit 7f54e563dc150cd670ca8df678437455c3a7f2cd) Co-authored-by: Andre Delfino <adelfino@gmail.com>
-rw-r--r--Doc/library/dataclasses.rst4
-rw-r--r--Doc/library/typing.rst12
2 files changed, 8 insertions, 8 deletions
diff --git a/Doc/library/dataclasses.rst b/Doc/library/dataclasses.rst
index 6e74af062d..e706f7fcc5 100644
--- a/Doc/library/dataclasses.rst
+++ b/Doc/library/dataclasses.rst
@@ -188,7 +188,7 @@ Module-level decorators, classes, and functions
@dataclass
class C:
- mylist: List[int] = field(default_factory=list)
+ mylist: list[int] = field(default_factory=list)
c = C()
c.mylist += [1, 2, 3]
@@ -301,7 +301,7 @@ Module-level decorators, classes, and functions
@dataclass
class C:
- mylist: List[Point]
+ mylist: list[Point]
p = Point(10, 20)
assert asdict(p) == {'x': 10, 'y': 20}
diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst
index bd6814f820..3900e49679 100644
--- a/Doc/library/typing.rst
+++ b/Doc/library/typing.rst
@@ -661,7 +661,7 @@ These can be used as types in annotations using ``[]``, each having a unique syn
and should not be set on instances of that class. Usage::
class Starship:
- stats: ClassVar[Dict[str, int]] = {} # class variable
+ stats: ClassVar[dict[str, int]] = {} # class variable
damage: int = 10 # instance variable
:data:`ClassVar` accepts only types and cannot be further subscribed.
@@ -774,10 +774,10 @@ These can be used as types in annotations using ``[]``, each having a unique syn
* ``Annotated`` can be used with nested and generic aliases::
T = TypeVar('T')
- Vec = Annotated[List[Tuple[T, T]], MaxLen(10)]
+ Vec = Annotated[list[tuple[T, T]], MaxLen(10)]
V = Vec[int]
- V == Annotated[List[Tuple[int, int]], MaxLen(10)]
+ V == Annotated[list[tuple[int, int]], MaxLen(10)]
.. versionadded:: 3.9
@@ -1540,7 +1540,7 @@ Functions and decorators
def process(response: None) -> None:
...
@overload
- def process(response: int) -> Tuple[int, str]:
+ def process(response: int) -> tuple[int, str]:
...
@overload
def process(response: bytes) -> str:
@@ -1664,8 +1664,8 @@ Introspection helpers
.. class:: ForwardRef
A class used for internal typing representation of string forward references.
- For example, ``List["SomeClass"]`` is implicitly transformed into
- ``List[ForwardRef("SomeClass")]``. This class should not be instantiated by
+ For example, ``list["SomeClass"]`` is implicitly transformed into
+ ``list[ForwardRef("SomeClass")]``. This class should not be instantiated by
a user, but may be used by introspection tools.
Constant