mirror of
https://github.com/python/cpython.git
synced 2025-12-04 00:30:19 +00:00
Issue #15409: Replace use of deprecated urllib.request.Request methods in http.cookijar
Patch by Flávio Ribeiro.
This commit is contained in:
parent
5e36edbaba
commit
da1ffbc4ee
1 changed files with 4 additions and 4 deletions
|
|
@ -625,7 +625,7 @@ def request_path(request):
|
|||
return path
|
||||
|
||||
def request_port(request):
|
||||
host = request.get_host()
|
||||
host = request.host
|
||||
i = host.find(':')
|
||||
if i >= 0:
|
||||
port = host[i+1:]
|
||||
|
|
@ -949,7 +949,7 @@ class DefaultCookiePolicy(CookiePolicy):
|
|||
return True
|
||||
|
||||
def set_ok_verifiability(self, cookie, request):
|
||||
if request.is_unverifiable() and is_third_party(request):
|
||||
if request.unverifiable and is_third_party(request):
|
||||
if cookie.version > 0 and self.strict_rfc2965_unverifiable:
|
||||
_debug(" third-party RFC 2965 cookie during "
|
||||
"unverifiable transaction")
|
||||
|
|
@ -1088,7 +1088,7 @@ class DefaultCookiePolicy(CookiePolicy):
|
|||
return True
|
||||
|
||||
def return_ok_verifiability(self, cookie, request):
|
||||
if request.is_unverifiable() and is_third_party(request):
|
||||
if request.unverifiable and is_third_party(request):
|
||||
if cookie.version > 0 and self.strict_rfc2965_unverifiable:
|
||||
_debug(" third-party RFC 2965 cookie during unverifiable "
|
||||
"transaction")
|
||||
|
|
@ -1100,7 +1100,7 @@ class DefaultCookiePolicy(CookiePolicy):
|
|||
return True
|
||||
|
||||
def return_ok_secure(self, cookie, request):
|
||||
if cookie.secure and request.get_type() != "https":
|
||||
if cookie.secure and request.type != "https":
|
||||
_debug(" secure cookie with non-secure request")
|
||||
return False
|
||||
return True
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue