Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Doc/library/typing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2269,7 +2269,7 @@ without the dedicated syntax, as documented below.

.. attribute:: __module__

The module in which the type alias was defined::
The name of the module in which the type alias was defined::

>>> type Alias = int
>>> Alias.__module__
Expand Down Expand Up @@ -2449,7 +2449,7 @@ types.

.. attribute:: __module__

The module in which the new type is defined.
The name of the module in which the new type is defined.

.. attribute:: __name__

Expand Down
Loading