From: Guido van Rossum Date: Sat, 30 Sep 1995 16:50:46 +0000 (+0000) Subject: actualized example/reference, fix bug w/ nonnumeric port X-Git-Tag: v1.3~87 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=928fcede658e8ae533677095e7055b58a64e7dc4;p=thirdparty%2FPython%2Fcpython.git actualized example/reference, fix bug w/ nonnumeric port --- diff --git a/Lib/httplib.py b/Lib/httplib.py index 59799cc1628e..3aeb643b641a 100644 --- a/Lib/httplib.py +++ b/Lib/httplib.py @@ -1,15 +1,14 @@ # HTTP client class # -# See the following document for a tentative protocol description: -# Hypertext Transfer Protocol (HTTP) Tim Berners-Lee, CERN -# Internet Draft 5 Nov 1993 -# draft-ietf-iiir-http-00.txt Expires 5 May 1994 +# See the following URL for a description of the HTTP/1.0 protocol: +# http://www.w3.org/hypertext/WWW/Protocols/ +# (I actually implemented it from a much earlier draft.) # # Example: # # >>> from httplib import HTTP -# >>> h = HTTP('www.cwi.nl') -# >>> h.putreqest('GET', '/index.html') +# >>> h = HTTP('www.python.org') +# >>> h.putrequest('GET', '/index.html') # >>> h.putheader('Accept', 'text/html') # >>> h.putheader('Accept', 'text/plain') # >>> h.endheaders() @@ -18,7 +17,8 @@ # ... f = h.getfile() # ... print f.read() # Print the raw HTML # ... -# Home Page of CWI, Amsterdam +# +# Python Language Home Page # [...many more lines...] # >>> # @@ -58,7 +58,8 @@ class HTTP: if i >= 0: host, port = host[:i], host[i+1:] try: port = string.atoi(port) - except string.atoi_error: pass + except string.atoi_error: + raise socket.error, "nonnumeric port" if not port: port = HTTP_PORT self.sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) if self.debuglevel > 0: print 'connect:', (host, port)