deprecate use of FakeSocket
diff --git a/Lib/httplib.py b/Lib/httplib.py
index b9e59d0..b926082 100644
--- a/Lib/httplib.py
+++ b/Lib/httplib.py
@@ -70,6 +70,7 @@
 import mimetools
 import socket
 from urlparse import urlsplit
+import warnings
 
 try:
     from cStringIO import StringIO
@@ -1081,6 +1082,9 @@
 
 
     def FakeSocket (sock, sslobj):
+        warnings.warn("FakeSocket is deprecated, and won't be in 3.x.  " +
+                      "Use the result of ssl.sslsocket directly instead.",
+                      DeprecationWarning, stacklevel=2)
         return sslobj