[Python-checkins] python/dist/src/Lib httplib.py,1.75,1.76 textwrap.py,1.29,1.30 xmlrpclib.py,1.26,1.27

tim_one@users.sourceforge.net tim_one@users.sourceforge.net
Mon, 12 May 2003 13:19:39 -0700


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

Modified Files:
	httplib.py textwrap.py xmlrpclib.py 
Log Message:
Whitespace normalization.


Index: httplib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/httplib.py,v
retrieving revision 1.75
retrieving revision 1.76
diff -C2 -d -r1.75 -r1.76
*** httplib.py	5 May 2003 16:13:56 -0000	1.75
--- httplib.py	12 May 2003 20:19:36 -0000	1.76
***************
*** 769,773 ****
          if self.debuglevel > 0:
              response = self.response_class(self.sock, self.debuglevel,
!                                            strict=self.strict, 
                                             method=self._method)
          else:
--- 769,773 ----
          if self.debuglevel > 0:
              response = self.response_class(self.sock, self.debuglevel,
!                                            strict=self.strict,
                                             method=self._method)
          else:

Index: textwrap.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/textwrap.py,v
retrieving revision 1.29
retrieving revision 1.30
diff -C2 -d -r1.29 -r1.30
*** textwrap.py	8 May 2003 02:12:35 -0000	1.29
--- textwrap.py	12 May 2003 20:19:36 -0000	1.30
***************
*** 319,323 ****
      This can be used e.g. to make triple-quoted strings line up with
      the left edge of screen/whatever, while still presenting it in the
!     source code in indented form. 
  
      For example:
--- 319,323 ----
      This can be used e.g. to make triple-quoted strings line up with
      the left edge of screen/whatever, while still presenting it in the
!     source code in indented form.
  
      For example:

Index: xmlrpclib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xmlrpclib.py,v
retrieving revision 1.26
retrieving revision 1.27
diff -C2 -d -r1.26 -r1.27
*** xmlrpclib.py	25 Apr 2003 00:26:51 -0000	1.26
--- xmlrpclib.py	12 May 2003 20:19:36 -0000	1.27
***************
*** 572,576 ****
          self.encoding = encoding
          self.allow_none = allow_none
!         
      dispatch = {}
  
--- 572,576 ----
          self.encoding = encoding
          self.allow_none = allow_none
! 
      dispatch = {}
  
***************
*** 613,617 ****
          write("<value><nil/></value>")
      dispatch[NoneType] = dump_nil
!     
      def dump_int(self, value, write):
          # in case ints are > 32 bits
--- 613,617 ----
          write("<value><nil/></value>")
      dispatch[NoneType] = dump_nil
! 
      def dump_int(self, value, write):
          # in case ints are > 32 bits
***************
*** 785,789 ****
          self._value = 0
      dispatch["nil"] = end_nil
!     
      def end_boolean(self, data):
          if data == "0":
--- 785,789 ----
          self._value = 0
      dispatch["nil"] = end_nil
! 
      def end_boolean(self, data):
          if data == "0":
***************
*** 1295,1299 ****
          self.__verbose = verbose
          self.__allow_none = allow_none
!         
      def __request(self, methodname, params):
          # call a method on the remote server
--- 1295,1299 ----
          self.__verbose = verbose
          self.__allow_none = allow_none
! 
      def __request(self, methodname, params):
          # call a method on the remote server
***************
*** 1341,1345 ****
  
      # server = ServerProxy("http://localhost:8000") # local server
!     server = ServerProxy("http://betty.userland.com") 
  
      print server
--- 1341,1345 ----
  
      # server = ServerProxy("http://localhost:8000") # local server
!     server = ServerProxy("http://betty.userland.com")
  
      print server