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

Method curl_post_data

test/pyhttpd/env.py:859–863  ·  view source on GitHub ↗
(self, url, data="", timeout=5, options=None)

Source from the content-addressed store, hash-verified

857 return self.curl_raw(urls=[url], timeout=timeout, options=options)
858
859 def curl_post_data(self, url, data="", timeout=5, options=None):
860 if not options:
861 options = []
862 options.extend(["--data", "%s" % data])
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:

Callers 7

test_h2_004_41Method · 0.80
test_h2_300_01Method · 0.80
test_h2_300_02Method · 0.80
test_h2_300_03Method · 0.80
test_h2_200_01Method · 0.80
test_h2_200_02Method · 0.80
test_h2_200_03Method · 0.80

Calls 1

curl_rawMethod · 0.95

Tested by 7

test_h2_004_41Method · 0.64
test_h2_300_01Method · 0.64
test_h2_300_02Method · 0.64
test_h2_300_03Method · 0.64
test_h2_200_01Method · 0.64
test_h2_200_02Method · 0.64
test_h2_200_03Method · 0.64