@@ -123,6 +123,12 @@ def __init__(self, src: int) -> None:
123123 """
124124 ...
125125
126+ def __str__ (self ) -> str :
127+ """
128+ Return a string representation of the type.
129+ """
130+ ...
131+
126132
127133@final
128134class StreamDependency :
@@ -149,6 +155,12 @@ def __init__(
149155 """
150156 ...
151157
158+ def __str__ (self ) -> str :
159+ """
160+ Return a string representation of the type.
161+ """
162+ ...
163+
152164
153165@final
154166class Priority :
@@ -172,6 +184,12 @@ def __init__(self, stream_id: StreamId, dependency: StreamDependency) -> None:
172184 """
173185 ...
174186
187+ def __str__ (self ) -> str :
188+ """
189+ Return a string representation of the type.
190+ """
191+ ...
192+
175193
176194@final
177195class Priorities :
@@ -191,6 +209,12 @@ def __init__(self, *priority: Priority) -> None:
191209 """
192210 ...
193211
212+ def __str__ (self ) -> str :
213+ """
214+ Return a string representation of the type.
215+ """
216+ ...
217+
194218
195219@final
196220class PseudoOrder :
@@ -209,6 +233,12 @@ def __init__(self, *pseudo_id: PseudoId) -> None:
209233 """
210234 ...
211235
236+ def __str__ (self ) -> str :
237+ """
238+ Return a string representation of the type.
239+ """
240+ ...
241+
212242
213243@final
214244class SettingsOrder :
@@ -228,6 +258,12 @@ def __init__(self, *setting_id: SettingId) -> None:
228258 """
229259 ...
230260
261+ def __str__ (self ) -> str :
262+ """
263+ Return a string representation of the type.
264+ """
265+ ...
266+
231267
232268class Params (TypedDict ):
233269 """
@@ -359,3 +395,9 @@ def __init__(self, **kwargs: Unpack[Params]) -> None:
359395 Create a new Http2Options instance.
360396 """
361397 ...
398+
399+ def __str__ (self ) -> str :
400+ """
401+ Return a string representation of the type.
402+ """
403+ ...
0 commit comments