.. doctest::
- >>> from typing import ParamSpec
+ >>> from typing import ParamSpec, get_origin
>>> P = ParamSpec("P")
>>> get_origin(P.args) is P
True
import re
import sys
import warnings
-from unittest import TestCase, main, skipUnless, skip
+from unittest import TestCase, main, skip
from unittest.mock import patch
from copy import copy, deepcopy
import weakref
import types
-from test.support import import_helper, captured_stderr, cpython_only
+from test.support import captured_stderr, cpython_only
from test.typinganndata import mod_generics_cache, _typed_dict_helper