aboutsummaryrefslogtreecommitdiffstats
path: root/contrib/python/typeguard/patches/02-support-new-typing-extensions.patch
blob: b296e06bd0bc014a9f18222c376c3e749dda465b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
--- contrib/python/typeguard/tests/test_typeguard.py	(index)
+++ contrib/python/typeguard/tests/test_typeguard.py	(working tree)
@@ -8,11 +8,11 @@ from functools import lru_cache, partial, wraps
 from io import BytesIO, StringIO
 from typing import (
     AbstractSet, Any, AnyStr, BinaryIO, Callable, Container, Dict, Generator, Generic, Iterable,
-    Iterator, List, NamedTuple, Sequence, Set, TextIO, Tuple, Type, TypeVar, Union)
+    Iterator, List, NamedTuple, Sequence, Set, TextIO, Tuple, Type, TypeVar, Union, TypedDict)
 from unittest.mock import MagicMock, Mock
 
 import pytest
-from typing_extensions import Literal, NoReturn, Protocol, TypedDict, runtime_checkable
+from typing_extensions import Literal, NoReturn, Protocol, runtime_checkable
 
 from typeguard import (
     ForwardRefPolicy, TypeChecker, TypeHintWarning, TypeWarning, check_argument_types,