changeset: 74331:3f2e5fd17b76 branch: 3.2 parent: 74327:e40e9866bb4d user: Terry Jan Reedy date: Wed Jan 11 03:29:42 2012 -0500 files: Doc/library/stdtypes.rst description: #13754 String returned if less than *or equal to* x 3 Close *13753 'seq' now 'iterable' diff -r e40e9866bb4d -r 3f2e5fd17b76 Doc/library/stdtypes.rst --- a/Doc/library/stdtypes.rst Tue Jan 10 23:45:54 2012 +0100 +++ b/Doc/library/stdtypes.rst Wed Jan 11 03:29:42 2012 -0500 @@ -1189,7 +1189,7 @@ Return a string which is the concatenation of the strings in the :term:`iterable` *iterable*. A :exc:`TypeError` will be raised if there are - any non-string values in *seq*, including :class:`bytes` objects. The + any non-string values in *iterable*, including :class:`bytes` objects. The separator between elements is the string providing this method. @@ -1197,7 +1197,7 @@ Return the string left justified in a string of length *width*. Padding is done using the specified *fillchar* (default is a space). The original string is - returned if *width* is less than ``len(s)``. + returned if *width* is less than or equal to ``len(s)``. .. method:: str.lower() @@ -1266,7 +1266,7 @@ Return the string right justified in a string of length *width*. Padding is done using the specified *fillchar* (default is a space). The original string is - returned if *width* is less than ``len(s)``. + returned if *width* is less than or equal to ``len(s)``. .. method:: str.rpartition(sep) @@ -1414,7 +1414,7 @@ Return the numeric string left filled with zeros in a string of length *width*. A sign prefix is handled correctly. The original string is - returned if *width* is less than ``len(s)``. + returned if *width* is less than or equal to ``len(s)``.

AltStyle によって変換されたページ (->オリジナル) /