@@ -41,89 +41,89 @@ class AudioSourceBase(IOBase, Reprable):
4141
4242 # ^ Methods
4343
44- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
44+ @deprecated ('NOT IMPLEMENTED' )
4545 def __iter__ (self ) -> NoReturn :
46- """!!! NOT IMPLEMENTED !!! """
46+ """NOT IMPLEMENTED"""
4747 raise NotImplementedError
4848
49- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
49+ @deprecated ('NOT IMPLEMENTED' )
5050 def __next__ (self ) -> NoReturn :
51- """!!! NOT IMPLEMENTED !!! """
51+ """NOT IMPLEMENTED"""
5252 raise NotImplementedError
5353
5454 def writable (self ) -> bool :
5555 return False
5656
57- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
57+ @deprecated ('NOT IMPLEMENTED' )
5858 def write (self , * args , ** kwargs ) -> NoReturn :
59- """!!! NOT IMPLEMENTED !!! """
59+ """NOT IMPLEMENTED"""
6060 raise OSError
6161
62- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
62+ @deprecated ('NOT IMPLEMENTED' )
6363 def writelines (self , lines : Iterable [Any ]) -> NoReturn :
64- """!!! NOT IMPLEMENTED !!! """
64+ """NOT IMPLEMENTED"""
6565 raise OSError
6666
67- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
67+ @deprecated ('NOT IMPLEMENTED' )
6868 def truncate (self , size : Optional [int ]= None ) -> NoReturn :
69- """!!! NOT IMPLEMENTED !!! """
69+ """NOT IMPLEMENTED"""
7070 raise NotImplementedError
7171
7272 def isatty (self ) -> bool :
7373 return False
7474
75- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
75+ @deprecated ('NOT IMPLEMENTED' )
7676 def flush (self ) -> NoReturn :
77- """!!! NOT IMPLEMENTED !!! """
77+ """NOT IMPLEMENTED"""
7878 raise NotImplementedError
7979
80- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
80+ @deprecated ('NOT IMPLEMENTED' )
8181 def fileno (self ) -> NoReturn :
82- """!!! NOT IMPLEMENTED !!! """
82+ """NOT IMPLEMENTED"""
8383 raise OSError
8484
8585# ! Audio Source Class (async)
8686
8787class AsyncAudioSourceBase (AudioSourceBase ):
8888 """Base class for working with audio sources (async)."""
8989
90- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
90+ @deprecated ('NOT IMPLEMENTED' )
9191 async def __aiter__ (self ) -> NoReturn :
92- """!!! NOT IMPLEMENTED !!! """
92+ """NOT IMPLEMENTED"""
9393 raise NotImplementedError
9494
95- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
95+ @deprecated ('NOT IMPLEMENTED' )
9696 async def __anext__ (self ) -> NoReturn :
97- """!!! NOT IMPLEMENTED !!! """
97+ """NOT IMPLEMENTED"""
9898 raise NotImplementedError
9999
100100 def writable (self ) -> bool :
101101 return False
102102
103- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
103+ @deprecated ('NOT IMPLEMENTED' )
104104 async def write (self , * args , ** kwargs ) -> NoReturn :
105- """!!! NOT IMPLEMENTED !!! """
105+ """NOT IMPLEMENTED"""
106106 raise OSError
107107
108- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
108+ @deprecated ('NOT IMPLEMENTED' )
109109 async def writelines (self , lines : Iterable [Any ]) -> NoReturn :
110- """!!! NOT IMPLEMENTED !!! """
110+ """NOT IMPLEMENTED"""
111111 raise OSError
112112
113- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
113+ @deprecated ('NOT IMPLEMENTED' )
114114 async def truncate (self , size = ...) -> NoReturn :
115- """!!! NOT IMPLEMENTED !!! """
115+ """NOT IMPLEMENTED"""
116116 raise NotImplementedError
117117
118118 async def isatty (self ) -> bool :
119119 return False
120120
121- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
121+ @deprecated ('NOT IMPLEMENTED' )
122122 async def flush (self ) -> NoReturn :
123- """!!! NOT IMPLEMENTED !!! """
123+ """NOT IMPLEMENTED"""
124124 raise NotImplementedError
125125
126- @deprecated ('!!! NOT IMPLEMENTED !!! ' )
126+ @deprecated ('NOT IMPLEMENTED' )
127127 async def fileno (self ) -> NoReturn :
128- """!!! NOT IMPLEMENTED !!! """
128+ """NOT IMPLEMENTED"""
129129 raise OSError
0 commit comments