summaryrefslogtreecommitdiff
path: root/packages/python/python-2.5.2/06-fix-urllib-exception.patch
diff options
context:
space:
mode:
authorMichael 'Mickey' Lauer <mickey@vanille-media.de>2009-01-16 12:52:11 +0000
committerMichael 'Mickey' Lauer <mickey@vanille-media.de>2009-01-16 12:52:11 +0000
commit06a32233c469a3628048d39bc8c79a864b51c1e0 (patch)
tree70cda69865cc8b546c4acc1b517efaa57e7b97c6 /packages/python/python-2.5.2/06-fix-urllib-exception.patch
parent7b84d457f3f70bb814385e83bd0e001591389104 (diff)
parent1fc87ab9a7b9684565785ce5996aba6f5c03fe53 (diff)
Merge branch 'mickey/python26' into org.openembedded.dev
Diffstat (limited to 'packages/python/python-2.5.2/06-fix-urllib-exception.patch')
-rw-r--r--packages/python/python-2.5.2/06-fix-urllib-exception.patch13
1 files changed, 0 insertions, 13 deletions
diff --git a/packages/python/python-2.5.2/06-fix-urllib-exception.patch b/packages/python/python-2.5.2/06-fix-urllib-exception.patch
deleted file mode 100644
index d096ee9402..0000000000
--- a/packages/python/python-2.5.2/06-fix-urllib-exception.patch
+++ /dev/null
@@ -1,13 +0,0 @@
-Index: python/Lib/urllib.py
-===================================================================
---- python.orig/Lib/urllib.py 2007-03-06 17:16:49.000000000 -0300
-+++ python/Lib/urllib.py 2007-03-06 17:17:05.000000000 -0300
-@@ -358,7 +358,7 @@
- """Default error handler: close the connection and raise IOError."""
- void = fp.read()
- fp.close()
-- raise IOError, ('http error', errcode, errmsg, headers)
-+ raise IOError, ('http error', errcode, errmsg)
-
- if hasattr(socket, "ssl"):
- def open_https(self, url, data=None):