8000 fix duplicate definitions in tornado by JelleZijlstra · Pull Request #2424 · python/typeshed · GitHub
[go: up one dir, main page]

Skip to content

fix duplicate definitions in tornado #2424

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Sep 3, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 0 additions & 18 deletions third_party/2/tornado/httpclient.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,12 @@ class AsyncHTTPClient(Configurable):
def configure(cls, impl, **kwargs): ...

class HTTPRequest:
headers = ... # type: Any
proxy_host = ... # type: Any
proxy_port = ... # type: Any
proxy_username = ... # type: Any
proxy_password = ... # type: Any
url = ... # type: Any
method = ... # type: Any
body = ... # type: Any
body_producer = ... # type: Any
auth_username = ... # type: Any
auth_password = ... # type: Any
Expand Down Expand Up @@ -63,22 +61,6 @@ class HTTPRequest:
def body(self): ...
@body.setter
def body(self, value): ...
@property
def body_producer(self): ...
@body_producer.setter
def body_producer(self, value): ...
@property
def streaming_callback(self): ...
@streaming_callback.setter
def streaming_callback(self, value): ...
@property
def header_callback(self): ...
@header_callback.setter
def header_callback(self, value): ...
@property
def prepare_curl_callback(self): ...
@prepare_curl_callback.setter
def prepare_curl_callback(self, value): ...

class HTTPResponse:
request = ... # type: Any
Expand Down
0