of get_origin_req_host() to origin_req_host.
Patch by Wei-Cheng Pan
"""
req_host = request_host(request)
- if not domain_match(req_host, reach(request.get_origin_req_host())):
+ if not domain_match(req_host, reach(request.origin_req_host)):
return True
else:
return False
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.