@@ -633,10 +633,10 @@ else:
633633 def new_event_loop (self ) -> AbstractEventLoop : ...
634634 # Child processes handling (Unix only).
635635 @abstractmethod
636- @deprecated ("Deprecated since Python 3.12 ; removed in Python 3.14." )
636+ @deprecated ("Deprecated; removed in Python 3.14." )
637637 def get_child_watcher (self ) -> AbstractChildWatcher : ...
638638 @abstractmethod
639- @deprecated ("Deprecated since Python 3.12 ; removed in Python 3.14." )
639+ @deprecated ("Deprecated; removed in Python 3.14." )
640640 def set_child_watcher (self , watcher : AbstractChildWatcher ) -> None : ...
641641
642642 AbstractEventLoopPolicy = _AbstractEventLoopPolicy
@@ -657,15 +657,15 @@ if sys.version_info >= (3, 14):
657657 def _get_event_loop_policy () -> _AbstractEventLoopPolicy : ...
658658 def _set_event_loop_policy (policy : _AbstractEventLoopPolicy | None ) -> None : ...
659659
660- @deprecated ("Deprecated since Python 3.14 ; will be removed in Python 3.16." )
660+ @deprecated ("Deprecated; will be removed in Python 3.16." )
661661def get_event_loop_policy () -> _AbstractEventLoopPolicy : ...
662- @deprecated ("Deprecated since Python 3.14 ; will be removed in Python 3.16." )
662+ @deprecated ("Deprecated; will be removed in Python 3.16." )
663663def set_event_loop_policy (policy : _AbstractEventLoopPolicy | None ) -> None : ...
664664def set_event_loop (loop : AbstractEventLoop | None ) -> None : ...
665665def new_event_loop () -> AbstractEventLoop : ...
666666
667667if sys .version_info < (3 , 14 ):
668- @deprecated ("Deprecated since Python 3.12 ; removed in Python 3.14." )
668+ @deprecated ("Deprecated; removed in Python 3.14." )
669669 def get_child_watcher () -> AbstractChildWatcher : ...
670- @deprecated ("Deprecated since Python 3.12 ; removed in Python 3.14." )
670+ @deprecated ("Deprecated; removed in Python 3.14." )
671671 def set_child_watcher (watcher : AbstractChildWatcher ) -> None : ...
0 commit comments