@@ -22,6 +22,9 @@ def test_ABC_of_abc(self):
2222 def test_BooleanOptionalAction_of_argparse (self ):
2323 self .assertOnlyIn ((3 , 9 ), self .detect ("from argparse import BooleanOptionalAction" ))
2424
25+ def test_Barrier_of_asyncio (self ):
26+ self .assertOnlyIn ((3 , 11 ), self .detect ("from asyncio import Barrier" ))
27+
2528 def test_BufferedProtocol_of_asyncio (self ):
2629 self .assertOnlyIn ((3 , 7 ), self .detect ("from asyncio import BufferedProtocol" ))
2730
@@ -34,6 +37,9 @@ def test_ThreadedChildWatcher_of_asyncio(self):
3437 def test_PidfdChildWatcher_of_asyncio (self ):
3538 self .assertOnlyIn ((3 , 9 ), self .detect ("from asyncio import PidfdChildWatcher" ))
3639
40+ def test_Runner_of_asyncio (self ):
41+ self .assertOnlyIn ((3 , 11 ), self .detect ("from asyncio import Runner" ))
42+
3743 def test_Calendar_of_calendar (self ):
3844 self .assertOnlyIn (((2 , 5 ), (3 , 0 )), self .detect ("from calendar import Calendar" ))
3945
@@ -160,6 +166,9 @@ def test_Deque_of_typing(self):
160166 def test_ForwardRef_of_typing (self ):
161167 self .assertOnlyIn ((3 , 7 ), self .detect ("from typing import ForwardRef" ))
162168
169+ def test_NamedTuple_of_typing (self ):
170+ self .assertOnlyIn ((3 , 11 ), self .detect ("from typing import NamedTuple" ))
171+
163172 def test_OrderedDict_of_typing (self ):
164173 self .assertOnlyIn ((3 , 7 ), self .detect ("from typing import OrderedDict" ))
165174
@@ -293,6 +302,12 @@ def test_c_bool_of_ctypes(self):
293302 def test_c_ssize_t_of_ctypes (self ):
294303 self .assertOnlyIn (((2 , 7 ), (3 , 2 )), self .detect ("from ctypes import c_ssize_t" ))
295304
305+ def test_BigEndianUnion_of_ctypes (self ):
306+ self .assertOnlyIn ((3 , 11 ), self .detect ("from ctypes import BigEndianUnion" ))
307+
308+ def test_LittleEndianUnion_of_ctypes (self ):
309+ self .assertOnlyIn ((3 , 11 ), self .detect ("from ctypes import LittleEndianUnion" ))
310+
296311 def test_HtmlDiff_of_difflib (self ):
297312 self .assertOnlyIn (((2 , 4 ), (3 , 0 )), self .detect ("from difflib import HtmlDiff" ))
298313
@@ -311,6 +326,9 @@ def test_LoggerAdapter_of_logging(self):
311326 def test_NullHandler_of_logging (self ):
312327 self .assertOnlyIn (((2 , 7 ), (3 , 1 )), self .detect ("from logging import NullHandler" ))
313328
329+ def test_StreamHandler_of_logging (self ):
330+ self .assertOnlyIn (((2 , 6 ), (3 , 0 )), self .detect ("from logging import StreamHandler" ))
331+
314332 def test_QueueHandler_of_logging_handlers (self ):
315333 self .assertOnlyIn ((3 , 2 ), self .detect ("from logging.handlers import QueueHandler" ))
316334
@@ -450,12 +468,21 @@ def test_DecodedGenerator_of_email_generator(self):
450468 def test_BytesGenerator_of_email_generator (self ):
451469 self .assertOnlyIn ((3 , 2 ), self .detect ("from email.generator import BytesGenerator" ))
452470
471+ def test_EnumCheck_of_enum (self ):
472+ self .assertOnlyIn ((3 , 11 ), self .detect ("from enum import EnumCheck" ))
473+
453474 def test_Flag_of_enum (self ):
454475 self .assertOnlyIn ((3 , 6 ), self .detect ("from enum import Flag" ))
455476
477+ def test_FlagBoundary_of_enum (self ):
478+ self .assertOnlyIn ((3 , 11 ), self .detect ("from enum import FlagBoundary" ))
479+
456480 def test_IntFlag_of_enum (self ):
457481 self .assertOnlyIn ((3 , 6 ), self .detect ("from enum import IntFlag" ))
458482
483+ def test_StrEnum_of_enum (self ):
484+ self .assertOnlyIn ((3 , 11 ), self .detect ("from enum import StrEnum" ))
485+
459486 def test_auto_of_enum (self ):
460487 self .assertOnlyIn ((3 , 6 ), self .detect ("from enum import auto" ))
461488
@@ -465,6 +492,9 @@ def test_FTP_TLS_of_ftplib(self):
465492 def test_partialmethod_of_functools (self ):
466493 self .assertOnlyIn ((3 , 4 ), self .detect ("from functools import partialmethod" ))
467494
495+ def test_HTTPMethod_of_http (self ):
496+ self .assertOnlyIn ((3 , 11 ), self .detect ("from http import HTTPMethod" ))
497+
468498 def test_HTTPStatus_of_http (self ):
469499 self .assertOnlyIn ((3 , 5 ), self .detect ("from http import HTTPStatus" ))
470500
@@ -525,6 +555,9 @@ def test_ExtensionFileLoader_of_importlib_machinery(self):
525555 def test_ModuleSpec_of_importlib_machinery (self ):
526556 self .assertOnlyIn ((3 , 4 ), self .detect ("from importlib.machinery import ModuleSpec" ))
527557
558+ def test_NamespaceLoader_of_importlib_machinery (self ):
559+ self .assertOnlyIn ((3 , 11 ), self .detect ("from importlib.machinery import NamespaceLoader" ))
560+
528561 def test_EntryPoints_of_importlib_metadata (self ):
529562 self .assertOnlyIn ((3 , 10 ), self .detect ("from importlib.metadata import EntryPoints" ))
530563
@@ -537,6 +570,9 @@ def test_Bytecode_of_dis(self):
537570 def test_Instruction_of_dis (self ):
538571 self .assertOnlyIn ((3 , 4 ), self .detect ("from dis import Instruction" ))
539572
573+ def test_Positions_of_dis (self ):
574+ self .assertOnlyIn ((3 , 11 ), self .detect ("from dis import Positions" ))
575+
540576 def test_DocTest_of_doctest (self ):
541577 self .assertOnlyIn (((2 , 4 ), (3 , 0 )), self .detect ("from doctest import DocTest" ))
542578
@@ -572,6 +608,9 @@ def test_ParamSpec_of_typing(self):
572608 def test_SMTP_SSL_of_smtplib (self ):
573609 self .assertOnlyIn (((2 , 6 ), (3 , 0 )), self .detect ("from smtplib import SMTP_SSL" ))
574610
611+ def test_Blob_of_sqlite3 (self ):
612+ self .assertOnlyIn ((3 , 11 ), self .detect ("from sqlite3 import Blob" ))
613+
575614 def test_LMTP_of_smtplib (self ):
576615 self .assertOnlyIn (((2 , 6 ), (3 , 0 )), self .detect ("from smtplib import LMTP" ))
577616
0 commit comments