Home | History | Annotate | Download | only in urllib

Lines Matching refs:POST

12 HTTPHandler performs HTTP GET and POST requests and deals with
18 urllib. pass the url and optionally data to post to an HTTP URL, and
391 default_method = "POST" if self.data is not None else "GET"
528 # post-process response
672 or code in (301, 302, 303) and m == "POST")):
676 # a POST MUST NOT cause a redirection without confirmation
1243 if request.data is not None: # POST
1246 msg = "POST data should be bytes, an iterable of bytes, " \
1857 - data is payload for a POST request or None.
1919 http_conn.request("POST", selector, data, headers)
2183 """Error 307 -- relocated, but turn POST into error."""