[Python-checkins] r58219 - python/trunk/Doc/library/stdtypes.rst

georg.brandl python-checkins at python.org
Thu Sep 20 18:45:27 CEST 2007


Author: georg.brandl
Date: Thu Sep 20 18:45:27 2007
New Revision: 58219

Modified:
   python/trunk/Doc/library/stdtypes.rst
Log:
#1176: document that string methods don't take keyword args.


Modified: python/trunk/Doc/library/stdtypes.rst
==============================================================================
--- python/trunk/Doc/library/stdtypes.rst	(original)
+++ python/trunk/Doc/library/stdtypes.rst	Thu Sep 20 18:45:27 2007
@@ -660,7 +660,9 @@
 .. index:: pair: string; methods
 
 Below are listed the string methods which both 8-bit strings and Unicode objects
-support. In addition, Python's strings support the sequence type methods
+support. Note that none of these methods take keyword arguments.
+
+In addition, Python's strings support the sequence type methods
 described in the :ref:`typesseq` section. To output formatted strings
 use template strings or the ``%`` operator described in the
 :ref:`string-formatting` section. Also, see the :mod:`re` module for


More information about the Python-checkins mailing list