From 72c231abf60b2512184646135537fca80f1b3ce0 Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Thu, 9 Oct 2025 20:00:04 +0200 Subject: [PATCH] [3.13] gh-139842: Clarify `__module__` description in typing.rst (GH-139863) (#139870) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Co-authored-by: Timothée Mazzucotelli --- Doc/library/typing.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Doc/library/typing.rst b/Doc/library/typing.rst index 1b9959eb143e..05444690cd01 100644 --- a/Doc/library/typing.rst +++ b/Doc/library/typing.rst @@ -2211,7 +2211,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__ @@ -2360,7 +2360,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__ -- 2.47.3