MCPcopy Create free account
hub / github.com/apache/httpd / curl_post_value

Method curl_post_value

test/pyhttpd/env.py:865–869  ·  view source on GitHub ↗
(self, url, key, value, timeout=5, options=None)

Source from the content-addressed store, hash-verified

863 return self.curl_raw(url, timeout, options)
864
865 def curl_post_value(self, url, key, value, timeout=5, options=None):
866 if not options:
867 options = []
868 options.extend(["--form", "{0}={1}".format(key, value)])
869 return self.curl_raw(url, timeout, options)
870
871 def curl_protocol_version(self, url, timeout=5, options=None):
872 if not options:

Callers 1

test_h2_004_07Method · 0.80

Calls 1

curl_rawMethod · 0.95

Tested by 1

test_h2_004_07Method · 0.64