@@ -23,14 +23,12 @@ class AsyncHTTPClient(Configurable):
23
23
def configure (cls , impl , ** kwargs ): ...
24
24
25
25
class HTTPRequest :
26
- headers = ... # type: Any
27
26
proxy_host = ... # type: Any
28
27
proxy_port = ... # type: Any
29
28
proxy_username = ... # type: Any
30
29
proxy_password = ... # type: Any
31
30
url = ... # type: Any
32
31
method = ... # type: Any
33
- body = ... # type: Any
34
32
body_producer = ... # type: Any
35
33
auth_username = ... # type: Any
36
34
auth_password = ... # type: Any
@@ -63,22 +61,6 @@ class HTTPRequest:
63
61
def body (self ): ...
64
62
@body .setter
65
63
def body (self , value ): ...
66
- @property
67
- def body_producer (self ): ...
68
- @body_producer .setter
69
- def body_producer (self , value ): ...
70
- @property
71
- def streaming_callback (self ): ...
72
- @streaming_callback .setter
73
- def streaming_callback (self , value ): ...
74
- @property
75
- def header_callback (self ): ...
76
- @header_callback .setter
77
- def header_callback (self , value ): ...
78
- @property
79
- def prepare_curl_callback (self ): ...
80
- @prepare_curl_callback .setter
81
- def prepare_curl_callback (self , value ): ...
82
64
83
65
class HTTPResponse :
84
66
request = ... # type: Any
0 commit comments