gh-139842: Clarify __module__ description in typing.rst (#139863)

This commit is contained in:
Timothée Mazzucotelli 2025-10-09 19:53:42 +02:00 committed by GitHub
parent 04461510fb
commit f575dd9ef8
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -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__
@ -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__