From 7e2d1c4cd6abe1c8df24108b0106a6f075652019 Mon Sep 17 00:00:00 2001 From: "evgeny.bovykin" Date: Mon, 23 Jun 2025 15:40:06 +0200 Subject: [PATCH] PY-74332 Patch typeshed: import collections.abc using `X as X` instead of `X` syntax GitOrigin-RevId: 3bc82ccaedfdfeec81fa06027487cf092deb26ef --- .../typeshed/stdlib/collections/__init__.pyi | 20 +++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/python/helpers/typeshed/stdlib/collections/__init__.pyi b/python/helpers/typeshed/stdlib/collections/__init__.pyi index b9e4f84ec0b6..a095ba78cc3c 100644 --- a/python/helpers/typeshed/stdlib/collections/__init__.pyi +++ b/python/helpers/typeshed/stdlib/collections/__init__.pyi @@ -7,16 +7,16 @@ from typing_extensions import Self if sys.version_info >= (3, 10): from collections.abc import ( - Callable, - ItemsView, - Iterable, - Iterator, - KeysView, - Mapping, - MutableMapping, - MutableSequence, - Sequence, - ValuesView, + Callable as Callable, + ItemsView as ItemsView, + Iterable as Iterable, + Iterator as Iterator, + KeysView as KeysView, + Mapping as Mapping, + MutableMapping as MutableMapping, + MutableSequence as MutableSequence, + Sequence as Sequence, + ValuesView as ValuesView, ) else: from _collections_abc import *