diff options
author | Filipe Laíns <lains@riseup.net> | 2021-10-31 14:57:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-10-31 14:57:21 (GMT) |
commit | bc8fd7c9c24eb71217ebdb8a12cf38e9dc4215b2 (patch) | |
tree | 2ba85edfe244805eb2dd036efb59a1c55d5f315d /Doc | |
parent | 39b4d5938ce781af41f8c9da72dee46095a78642 (diff) | |
download | cpython-bc8fd7c9c24eb71217ebdb8a12cf38e9dc4215b2.zip cpython-bc8fd7c9c24eb71217ebdb8a12cf38e9dc4215b2.tar.gz cpython-bc8fd7c9c24eb71217ebdb8a12cf38e9dc4215b2.tar.bz2 |
bpo-45516: fix Traversable.name documentation (GH-29194)
Here we go again... Sorrry!
Signed-off-by: Filipe Laíns <lains@riseup.net>
Automerge-Triggered-By: GH:jaraco
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/library/importlib.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/library/importlib.rst b/Doc/library/importlib.rst index 7a656fc..5b4fba3 100644 --- a/Doc/library/importlib.rst +++ b/Doc/library/importlib.rst @@ -815,9 +815,9 @@ ABC hierarchy:: .. versionadded:: 3.9 - .. abstractmethod:: name() + .. attribute:: name - The base name of this object without any parent references. + Abstract. The base name of this object without any parent references. .. abstractmethod:: iterdir() |