@@ -46,6 +46,9 @@ def test_TaskGroup_of_asyncio(self):
4646 def test_Calendar_of_calendar (self ):
4747 self .assertOnlyIn (((2 , 5 ), (3 , 0 )), self .detect ("from calendar import Calendar" ))
4848
49+ def test_Day_of_calendar (self ):
50+ self .assertOnlyIn ((3 , 12 ), self .detect ("from calendar import Day" ))
51+
4952 def test_HTMLCalendar_of_calendar (self ):
5053 self .assertOnlyIn (((2 , 5 ), (3 , 0 )), self .detect ("from calendar import HTMLCalendar" ))
5154
@@ -55,6 +58,9 @@ def test_LocaleHTMLCalendar_of_calendar(self):
5558 def test_LocaleTextCalendar_of_calendar (self ):
5659 self .assertOnlyIn (((2 , 5 ), (3 , 0 )), self .detect ("from calendar import LocaleTextCalendar" ))
5760
61+ def test_Month_of_calendar (self ):
62+ self .assertOnlyIn ((3 , 12 ), self .detect ("from calendar import Month" ))
63+
5864 def test_TextCalendar_of_calendar (self ):
5965 self .assertOnlyIn (((2 , 5 ), (3 , 0 )), self .detect ("from calendar import TextCalendar" ))
6066
@@ -284,6 +290,9 @@ def test_AsyncIterator_of_collections_abc(self):
284290 def test_AsyncGenerator_of_collections_abc (self ):
285291 self .assertOnlyIn ((3 , 6 ), self .detect ("from collections.abc import AsyncGenerator" ))
286292
293+ def test_Buffer_of_collections_abc (self ):
294+ self .assertOnlyIn ((3 , 12 ), self .detect ("from collections.abc import Buffer" ))
295+
287296 def test_AbstractContextManager_of_contextlib (self ):
288297 self .assertOnlyIn ((3 , 6 ), self .detect ("from contextlib import AbstractContextManager" ))
289298
@@ -332,6 +341,9 @@ def test_Parameter_of_inspect(self):
332341 def test_BoundArguments_of_inspect (self ):
333342 self .assertOnlyIn ((3 , 3 ), self .detect ("from inspect import BoundArguments" ))
334343
344+ def test_BufferFlags_of_inspect (self ):
345+ self .assertOnlyIn ((3 , 12 ), self .detect ("from inspect import BufferFlags" ))
346+
335347 def test_LoggerAdapter_of_logging (self ):
336348 self .assertOnlyIn (((2 , 6 ), (3 , 0 )), self .detect ("from logging import LoggerAdapter" ))
337349
@@ -635,6 +647,9 @@ def test_TypedDict_of_typing(self):
635647 def test_ParamSpec_of_typing (self ):
636648 self .assertOnlyIn ((3 , 10 ), self .detect ("from typing import ParamSpec" ))
637649
650+ def test_TypeAliasType_of_typing (self ):
651+ self .assertOnlyIn ((3 , 12 ), self .detect ("from typing import TypeAliasType" ))
652+
638653 def test_SMTP_SSL_of_smtplib (self ):
639654 self .assertOnlyIn (((2 , 6 ), (3 , 0 )), self .detect ("from smtplib import SMTP_SSL" ))
640655
0 commit comments