summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohannes Gijsbers <jlg@dds.nl>2005-01-09 05:51:49 (GMT)
committerJohannes Gijsbers <jlg@dds.nl>2005-01-09 05:51:49 (GMT)
commitcdd625a77067e226a5dc715d1892f9511a067391 (patch)
treec7fb03ff0ee7b830d416e57b8236219fbf52aa16
parent2abe785fee0839a51c83d6f2285e6ed8ade89c3a (diff)
downloadcpython-cdd625a77067e226a5dc715d1892f9511a067391.zip
cpython-cdd625a77067e226a5dc715d1892f9511a067391.tar.gz
cpython-cdd625a77067e226a5dc715d1892f9511a067391.tar.bz2
Patch #1095362: replace hardcoded test for POST/GET with call to get_method,
removing some duplication and gaining some flexibility in the process.
-rw-r--r--Lib/urllib2.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/Lib/urllib2.py b/Lib/urllib2.py
index 5443d0b..a4046d3 100644
--- a/Lib/urllib2.py
+++ b/Lib/urllib2.py
@@ -859,7 +859,7 @@ class AbstractDigestAuthHandler:
entdig = None
A1 = "%s:%s:%s" % (user, realm, pw)
- A2 = "%s:%s" % (req.has_data() and 'POST' or 'GET',
+ A2 = "%s:%s" % (req.get_method(),
# XXX selector: what about proxies and full urls
req.get_selector())
if qop == 'auth':