summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorSenthil Kumaran <senthil@uthcode.com>2013-04-09 14:07:59 (GMT)
committerSenthil Kumaran <senthil@uthcode.com>2013-04-09 14:07:59 (GMT)
commitd9fbf36bbd9e19c2973dae507f0a522c62ec7be9 (patch)
tree10416537525d4508cc49ef83fcf963db4105af49 /Misc
parentd281c73536949b81097adccec86bdd77207fd66f (diff)
downloadcpython-d9fbf36bbd9e19c2973dae507f0a522c62ec7be9.zip
cpython-d9fbf36bbd9e19c2973dae507f0a522c62ec7be9.tar.gz
cpython-d9fbf36bbd9e19c2973dae507f0a522c62ec7be9.tar.bz2
#17678: Fix DeprecationWarning in the http/cookiejar.py by changing the usage
of get_origin_req_host() to origin_req_host. Patch by Wei-Cheng Pan
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 9d61c32..744c715 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -21,6 +21,9 @@ Core and Builtins
Library
-------
+- Issue #17678: Fix DeprecationWarning in the http/cookiejar.py by changing the
+ usage of get_origin_req_host() to origin_req_host.
+
- Issue #17666: Fix reading gzip files with an extra field.
- Issue #17502: Process DEFAULT values in mock side_effect that returns iterator.