[Python-checkins] cpython: Issue #15409: Replace use of deprecated urllib.request.Request methods in

meador.inge python-checkins at python.org
Sat Jul 21 02:13:49 CEST 2012


http://hg.python.org/cpython/rev/ea8078365d3b
changeset:   78209:ea8078365d3b
parent:      78207:118fe0ee6921
user:        Meador Inge <meadori at gmail.com>
date:        Fri Jul 20 19:12:04 2012 -0500
summary:
  Issue #15409: Replace use of deprecated urllib.request.Request methods in http.cookijar

Patch by Flávio Ribeiro.

files:
  Lib/http/cookiejar.py |  8 ++++----
  1 files changed, 4 insertions(+), 4 deletions(-)


diff --git a/Lib/http/cookiejar.py b/Lib/http/cookiejar.py
--- a/Lib/http/cookiejar.py
+++ b/Lib/http/cookiejar.py
@@ -625,7 +625,7 @@
     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 @@
         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 @@
         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 @@
         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

-- 
Repository URL: http://hg.python.org/cpython


More information about the Python-checkins mailing list