diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2020-09-15 23:37:13 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 23:37:13 (GMT) |
commit | 49917d576a578c8c29b8dbcbd5257c366a53d498 (patch) | |
tree | 7f100a76b6d2e5e3a9cf189ba33412aefd1d3f88 /Misc | |
parent | 03748837342d45126e71727b400e8fb3d96afc9f (diff) | |
download | cpython-49917d576a578c8c29b8dbcbd5257c366a53d498.zip cpython-49917d576a578c8c29b8dbcbd5257c366a53d498.tar.gz cpython-49917d576a578c8c29b8dbcbd5257c366a53d498.tar.bz2 |
bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)
Automerge-Triggered-By: @gvanrossum
(cherry picked from commit 2e87774df1a0eaf2a1fe8cc4d958df60f7125b6e)
Co-authored-by: Batuhan Taskaya <isidentical@gmail.com>
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Core and Builtins/2020-09-15-23-29-49.bpo-41780.bOBUIH.rst | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2020-09-15-23-29-49.bpo-41780.bOBUIH.rst b/Misc/NEWS.d/next/Core and Builtins/2020-09-15-23-29-49.bpo-41780.bOBUIH.rst new file mode 100644 index 0000000..9a7594f --- /dev/null +++ b/Misc/NEWS.d/next/Core and Builtins/2020-09-15-23-29-49.bpo-41780.bOBUIH.rst @@ -0,0 +1,2 @@ +Fix :meth:`__dir__` of :class:`types.GenericAlias`. Patch by Batuhan +Taskaya. |