diff options
author | Batuhan Taskaya <isidentical@gmail.com> | 2020-09-15 21:58:32 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-15 21:58:32 (GMT) |
commit | 2e87774df1a0eaf2a1fe8cc4d958df60f7125b6e (patch) | |
tree | 8b52cd50f90a24b7c22c2e87d399413bda5e6e9b /Misc | |
parent | ac0333e1e117b7f61ed7ef1dbcdb6e515ada603b (diff) | |
download | cpython-2e87774df1a0eaf2a1fe8cc4d958df60f7125b6e.zip cpython-2e87774df1a0eaf2a1fe8cc4d958df60f7125b6e.tar.gz cpython-2e87774df1a0eaf2a1fe8cc4d958df60f7125b6e.tar.bz2 |
bpo-41780: Fix __dir__ of types.GenericAlias (GH-22262)
Automerge-Triggered-By: @gvanrossum
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. |