[Python-checkins] python/dist/src/Doc/lib libstdtypes.tex, 1.129.8.9, 1.129.8.10

loewis at users.sourceforge.net loewis at users.sourceforge.net
Thu Jun 3 05:48:27 EDT 2004


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

Modified Files:
      Tag: release23-maint
	libstdtypes.tex 
Log Message:
Document which string methods are locale-dependent. Fixes #935749.


Index: libstdtypes.tex
===================================================================
RCS file: /cvsroot/python/python/dist/src/Doc/lib/libstdtypes.tex,v
retrieving revision 1.129.8.9
retrieving revision 1.129.8.10
diff -C2 -d -r1.129.8.9 -r1.129.8.10
*** libstdtypes.tex	12 May 2004 02:47:56 -0000	1.129.8.9
--- libstdtypes.tex	3 Jun 2004 09:48:25 -0000	1.129.8.10
***************
*** 545,548 ****
--- 545,550 ----
  \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}
  
***************
*** 606,609 ****
--- 608,613 ----
  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}
  
***************
*** 611,614 ****
--- 615,620 ----
  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}
  
***************
*** 616,619 ****
--- 622,627 ----
  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}
  
***************
*** 621,624 ****
--- 629,634 ----
  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}
  
***************
*** 626,629 ****
--- 636,641 ----
  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}
  
***************
*** 633,636 ****
--- 645,650 ----
  characters and lowercase characters only cased ones.  Return false
  otherwise.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 638,641 ****
--- 652,657 ----
  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}
  
***************
*** 654,657 ****
--- 670,675 ----
  \begin{methoddesc}[string]{lower}{}
  Return a copy of the string converted to lowercase.
+ 
+ For 8-bit strings, this method is locale-dependent.
  \end{methoddesc}
  
***************
*** 732,735 ****
--- 750,755 ----
  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}
  
***************
*** 737,740 ****
--- 757,762 ----
  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}
  
***************
*** 758,761 ****
--- 780,785 ----
  \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