From: Nikita Sobolev Date: Mon, 24 Jan 2022 15:42:54 +0000 (+0300) Subject: bpo-46470: remove unused branch from `typing._remove_dups_flatten` (GH-30780) X-Git-Tag: v3.11.0a5~119 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c144d9363107b50bcb0ccd01e7202e26a40c21f0;p=thirdparty%2FPython%2Fcpython.git bpo-46470: remove unused branch from `typing._remove_dups_flatten` (GH-30780) The branch was a remnant of old 3.6 typing.Union implementation. --- diff --git a/Lib/typing.py b/Lib/typing.py index 972b8ba24b27..7ff546fbb649 100644 --- a/Lib/typing.py +++ b/Lib/typing.py @@ -280,8 +280,6 @@ def _remove_dups_flatten(parameters): for p in parameters: if isinstance(p, (_UnionGenericAlias, types.UnionType)): params.extend(p.__args__) - elif isinstance(p, tuple) and len(p) > 0 and p[0] is Union: - params.extend(p[1:]) else: params.append(p) diff --git a/Misc/NEWS.d/next/Library/2022-01-22-13-17-35.bpo-46470.MnNhgU.rst b/Misc/NEWS.d/next/Library/2022-01-22-13-17-35.bpo-46470.MnNhgU.rst new file mode 100644 index 000000000000..45b9cea3cd56 --- /dev/null +++ b/Misc/NEWS.d/next/Library/2022-01-22-13-17-35.bpo-46470.MnNhgU.rst @@ -0,0 +1 @@ +Remove unused branch from ``typing._remove_dups_flatten``