]> granicus.if.org Git - python/commitdiff
#1176: document that string methods don't take keyword args.
authorGeorg Brandl <georg@python.org>
Thu, 20 Sep 2007 16:45:27 +0000 (16:45 +0000)
committerGeorg Brandl <georg@python.org>
Thu, 20 Sep 2007 16:45:27 +0000 (16:45 +0000)
Doc/library/stdtypes.rst

index c2c274d198789d576024e17be873c715dbb11fb3..b509e2e2922a7ec46e61af86961dbeda7ba1784f 100644 (file)
@@ -660,7 +660,9 @@ String Methods
 .. 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