[Python-checkins] CVS: python/dist/src/Modules pyexpat.c,2.11,2.12

Thomas Wouters python-dev@python.org
Sat, 22 Jul 2000 09:34:18 -0700


Update of /cvsroot/python/python/dist/src/Modules
In directory slayer.i.sourceforge.net:/tmp/cvs-serv25824

Modified Files:
	pyexpat.c 
Log Message:

Mark Favas's fix for typos in docstrings.



Index: pyexpat.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/pyexpat.c,v
retrieving revision 2.11
retrieving revision 2.12
diff -C2 -r2.11 -r2.12
*** pyexpat.c	2000/07/12 04:49:00	2.11
--- pyexpat.c	2000/07/22 16:34:15	2.12
***************
*** 425,429 ****
  
  static char xmlparse_Parse__doc__[] = 
! "Parse(data[, isfinal])
  Parse XML data.  `isfinal' should be true at end of input.";
  
--- 425,429 ----
  
  static char xmlparse_Parse__doc__[] = 
! "Parse(data[, isfinal])\n\
  Parse XML data.  `isfinal' should be true at end of input.";
  
***************
*** 501,505 ****
  
  static char xmlparse_ParseFile__doc__[] = 
! "ParseFile(file)
  Parse XML data from file-like object.";
  
--- 501,505 ----
  
  static char xmlparse_ParseFile__doc__[] = 
! "ParseFile(file)\n\
  Parse XML data from file-like object.";
  
***************
*** 556,560 ****
  
  static char xmlparse_SetBase__doc__[] = 
! "SetBase(base_url)
  Set the base URL for the parser.";
  
--- 556,560 ----
  
  static char xmlparse_SetBase__doc__[] = 
! "SetBase(base_url)\n\
  Set the base URL for the parser.";
  
***************
*** 574,578 ****
  
  static char xmlparse_GetBase__doc__[] = 
! "GetBase() -> url
  Return base URL string for the parser.";
  
--- 574,578 ----
  
  static char xmlparse_GetBase__doc__[] = 
! "GetBase() -> url\n\
  Return base URL string for the parser.";