Searched refs:full_url (Results 1 – 8 of 8) sorted by relevance
/third_party/curl/tests/libtest/ |
D | libauthretry.c | 35 char *full_url = malloc(len); in send_request() local 36 if(!full_url) { in send_request() 41 msnprintf(full_url, len, "%s%04d", url, seq); in send_request() 43 "(auth %ld)\n", seq, full_url, userpwd, auth_scheme); in send_request() 44 test_setopt(curl, CURLOPT_URL, full_url); in send_request() 54 free(full_url); in send_request()
|
D | libntlmconnect.c | 96 char *full_url = malloc(urllen); in test() local 100 if(!full_url) { in test() 112 free(full_url); in test() 138 msnprintf(full_url, urllen, "%s0200", url); in test() 142 msnprintf(full_url, urllen, "%s0100", url); in test() 146 easy_setopt(easy[num_handles], CURLOPT_URL, full_url); in test() 231 free(full_url); in test()
|
/third_party/python/Lib/urllib/ |
D | request.py | 308 url = request.full_url 322 self.full_url = url 338 def full_url(self): member in Request 343 @full_url.setter 344 def full_url(self, url): member in Request 350 @full_url.deleter 351 def full_url(self): member in Request 377 raise ValueError("unknown url type: %r" % self.full_url) 388 return self.full_url 395 self.selector = self.full_url [all …]
|
/third_party/python/Lib/test/ |
D | test_urllib2.py | 1082 r.full_url = url 1093 del r.full_url 1094 self.assertIsNone(r.full_url) 1974 self.assertEqual(req.get_full_url(), req.full_url)
|
/third_party/python/Doc/howto/ |
D | urllib2.rst | 158 >>> full_url = url + '?' + url_values 159 >>> data = urllib.request.urlopen(full_url)
|
/third_party/python/Doc/library/ |
D | urllib.request.rst | 472 .. attribute:: Request.full_url 478 Request.full_url is a property with setter, getter and a deleter. Getting 479 :attr:`~Request.full_url` returns the original request URL with the 577 Returns :attr:`Request.full_url`
|
/third_party/python/Doc/whatsnew/ |
D | 3.4.rst | 1636 :attr:`~urllib.request.Request.full_url` or :attr:`~urllib.request.Request.data`
|
/third_party/python/Misc/ |
D | HISTORY | 5033 - Issue #17272: Making the urllib.request's Request.full_url a descriptor. 5034 Fixes bugs with assignment to full_url. Patch by Demian Brecht.
|