]> git.pld-linux.org Git - packages/BitTorrent.git/commitdiff
- orphaned, outdated
authorJan Rękorajski <baggins@pld-linux.org>
Fri, 21 Apr 2006 23:40:18 +0000 (23:40 +0000)
committercvs2git <feedback@pld-linux.org>
Sun, 24 Jun 2012 12:13:13 +0000 (12:13 +0000)
Changed files:
    BitTorrent-python24.patch -> 1.2

BitTorrent-python24.patch [deleted file]

diff --git a/BitTorrent-python24.patch b/BitTorrent-python24.patch
deleted file mode 100644 (file)
index 6ee18b8..0000000
+++ /dev/null
@@ -1,18 +0,0 @@
---- A/BitTorrent/zurllib.py    Thu Dec  9 10:36:43 2004
-+++ B/BitTorrent/zurllib.py    Thu Dec  9 10:38:19 2004
-@@ -35,7 +35,14 @@
-         if DEBUG: 
-              pprint.pprint(headers.dict)
-         url = fp.url
--        return addinfourldecompress(fp, headers, url)
-+      resp = addinfourldecompress(fp, headers, url)
-+      # As of Python 2.4 http_open response also has 'code' and 'msg'
-+      # members, and HTTPErrorProcessor breaks if they don't exist.
-+      if 'code' in dir(fp):
-+        resp.code = fp.code
-+      if 'msg' in dir(fp):
-+        resp.msg = fp.msg
-+      return resp
- class addinfourldecompress(addinfourl):
This page took 0.070551 seconds and 4 git commands to generate.