- strip whitespace from NO_PROXY entries (bnc#710736)

OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=104
This commit is contained in:
Jan Matejek 2011-08-08 17:58:02 +00:00 committed by Git OBS Bridge
parent 444cbdf413
commit 3ccc692acd
3 changed files with 19 additions and 0 deletions

View File

@ -0,0 +1,12 @@
Index: Python-2.7.1/Lib/urllib.py
===================================================================
--- Python-2.7.1.orig/Lib/urllib.py
+++ Python-2.7.1/Lib/urllib.py
@@ -1350,6 +1350,7 @@ def proxy_bypass_environment(host):
hostonly, port = splitport(host)
# check if the host ends with any of the DNS suffixes
for name in no_proxy.split(','):
+ name = name.strip()
if name and (hostonly.endswith(name) or host.endswith(name)):
return 1
# otherwise, don't bypass

View File

@ -1,3 +1,8 @@
-------------------------------------------------------------------
Mon Aug 8 17:03:03 UTC 2011 - jmatejek@novell.com
- strip whitespace from NO_PROXY entries (bnc#710736)
-------------------------------------------------------------------
Fri Jul 22 13:03:49 UTC 2011 - idonmez@novell.com

View File

@ -53,6 +53,7 @@ Patch13: python-2.7.1-fix_date_time_compiler.patch
Patch14: python-2.7-CVE-2011-1521-fileurl.patch
Patch15: python-2.7-fix-parallel-make.patch
Patch16: python-2.7.1-linux3.patch
Patch17: python-2.7.1-urllib-noproxy.patch
BuildRoot: %{_tmppath}/%{name}-%{version}-build
%define python_version %(echo %{version} | head -c 3)
Provides: %{name} = %{python_version}
@ -150,6 +151,7 @@ Authors:
%patch14 -p1
%patch15 -p1
%patch16 -p1
%patch17 -p1
# drop Autoconf version requirement
sed -i 's/^version_required/dnl version_required/' configure.in