[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex, 1.154, 1.155

loewis at users.sourceforge.net loewis at users.sourceforge.net
Thu Jun 3 05:47:03 EDT 2004


Update of /cvsroot/python/python/dist/src/Doc/lib
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv21861

Modified Files:
	libstdtypes.tex 
Log Message:
Document string methods that are locale-dependent. Fixes #935749.
Will backport to 2.3.


Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.154
retrieving revision 1.155
diff -C2 -d -r1.154 -r1.155
*** libstdtypes.tex	2 Jun 2004 16:49:08 -0000	1.154
--- libstdtypes.tex	3 Jun 2004 09:47:01 -0000	1.155
***************
*** 547,550 ****
--- 547,552 ----
  \begin{methoddesc}[string]{capitalize}{}
  Return a copy of the string with only its first character capitalized.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 609,612 ****
--- 611,616 ----
  Return true if all characters in the string are alphanumeric and there
  is at least one character, false otherwise.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 614,617 ****
--- 618,623 ----
  Return true if all characters in the string are alphabetic and there
  is at least one character, false otherwise.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 619,622 ****
--- 625,630 ----
  Return true if all characters in the string are digits and there
  is at least one character, false otherwise.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 624,627 ****
--- 632,637 ----
  Return true if all cased characters in the string are lowercase and
  there is at least one cased character, false otherwise.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 629,632 ****
--- 639,644 ----
  Return true if there are only whitespace characters in the string and
  there is at least one character, false otherwise.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 636,639 ****
--- 648,653 ----
  characters and lowercase characters only cased ones.  Return false
  otherwise.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 641,644 ****
--- 655,660 ----
  Return true if all cased characters in the string are uppercase and
  there is at least one cased character, false otherwise.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 665,668 ****
--- 681,686 ----
  \begin{methoddesc}[string]{lower}{}
  Return a copy of the string converted to lowercase.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 753,756 ****
--- 771,776 ----
  Return a copy of the string with uppercase characters converted to
  lowercase and vice versa.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 758,761 ****
--- 778,783 ----
  Return a titlecased version of the string: words start with uppercase
  characters, all remaining cased characters are lowercase.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 779,782 ****
--- 801,806 ----
  \begin{methoddesc}[string]{upper}{}
  Return a copy of the string converted to uppercase.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  




More information about the Python-checkins mailing list