[Python-checkins] CVS: python/dist/src/Lib httplib.py,1.34,1.34.2.1

Skip Montanaro montanaro@users.sourceforge.net
Thu, 31 May 2001 11:03:24 -0700


Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv12485

Modified Files:
      Tag: release21-maint
	httplib.py 
Log Message:
expand __all__ to include a bunch of names that should have been there
before.


Index: httplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/httplib.py,v
retrieving revision 1.34
retrieving revision 1.34.2.1
diff -C2 -r1.34 -r1.34.2.1
*** httplib.py	2001/04/13 14:57:08	1.34
--- httplib.py	2001/05/31 18:03:22	1.34.2.1
***************
*** 75,79 ****
      from StringIO import StringIO
  
! __all__ = ["HTTP"]
  
  HTTP_PORT = 80
--- 75,84 ----
      from StringIO import StringIO
  
! __all__ = ["HTTP", "HTTPResponse", "HTTPConnection", "HTTPSConnection",
!            "HTTPException", "NotConnected", "UnknownProtocol",
!            "UnknownTransferEncoding", "IllegalKeywordArgument",
!            "UnimplementedFileMode", "IncompleteRead",
!            "ImproperConnectionState", "CannotSendRequest", "CannotSendHeader",
!            "ResponseNotReady", "BadStatusLine", "error"]
  
  HTTP_PORT = 80