[Python-checkins] CVS: python/dist/src/Lib xmlrpclib.py,1.3,1.4

Fredrik Lundh effbot@users.sourceforge.net
Thu, 23 Aug 2001 13:13:10 -0700


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

Modified Files:
	xmlrpclib.py 
Log Message:


untabification

Index: xmlrpclib.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/xmlrpclib.py,v
retrieving revision 1.3
retrieving revision 1.4
diff -C2 -d -r1.3 -r1.4
*** xmlrpclib.py	2001/08/23 20:04:33	1.3
--- xmlrpclib.py	2001/08/23 20:13:08	1.4
***************
*** 388,396 ****
          else:
              # parameter block
! 	    # FIXME: the xml-rpc specification allows us to leave out
! 	    # the entire <params> block if there are no parameters.
! 	    # however, changing this may break older code (including
! 	    # old versions of xmlrpclib.py), so this is better left as
! 	    # is for now.  See @XMLRPC3 for more information. /F
              write("<params>\n")
              for v in values:
--- 388,396 ----
          else:
              # parameter block
!             # FIXME: the xml-rpc specification allows us to leave out
!             # the entire <params> block if there are no parameters.
!             # however, changing this may break older code (including
!             # old versions of xmlrpclib.py), so this is better left as
!             # is for now.  See @XMLRPC3 for more information. /F
              write("<params>\n")
              for v in values: