Fix Issue1327971: HTTPResponse should expose a proper fileno attribute
diff --git a/Lib/httplib.py b/Lib/httplib.py
index b1452f4..2f0356e 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -639,6 +639,9 @@
             amt -= len(chunk)
         return ''.join(s)
 
+    def fileno(self):
+        return self.fp.fileno()
+
     def getheader(self, name, default=None):
         if self.msg is None:
             raise ResponseNotReady()