From 34133fc3bd0db455567c187a94dca3d67f6c2c9aae869167a1b8a194ffe8f4e1 Mon Sep 17 00:00:00 2001 From: Jan Matejek Date: Tue, 3 Apr 2012 14:29:58 +0000 Subject: [PATCH] dropping leftover patch OBS-URL: https://build.opensuse.org/package/show/devel:languages:python:Factory/python?expand=0&rev=119 --- python-2.7.1-urllib-noproxy.patch | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 python-2.7.1-urllib-noproxy.patch diff --git a/python-2.7.1-urllib-noproxy.patch b/python-2.7.1-urllib-noproxy.patch deleted file mode 100644 index e104c8a..0000000 --- a/python-2.7.1-urllib-noproxy.patch +++ /dev/null @@ -1,12 +0,0 @@ -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