File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,11 +22,11 @@ objects:
22
22
Add an item to the end of the list. Equivalent to ``a[len(a):] = [x] ``.
23
23
24
24
25
- .. method :: list.extend(L )
25
+ .. method :: list.extend(iterable )
26
26
:noindex:
27
27
28
- Extend the list by appending all the items in the given list . Equivalent to
29
- ``a[len(a):] = L ``.
28
+ Extend the list by appending all the items from the iterable . Equivalent to
29
+ ``a[len(a):] = iterable ``.
30
30
31
31
32
32
.. method :: list.insert(i, x)
@@ -68,7 +68,7 @@ objects:
68
68
69
69
The optional arguments *start * and *end * are interpreted as in the slice
70
70
notation and are used to limit the search to a particular subsequence of
71
- * x * . The returned index is computed relative to the beginning of the full
71
+ the list . The returned index is computed relative to the beginning of the full
72
72
sequence rather than the *start * argument.
73
73
74
74
Original file line number Diff line number Diff line change @@ -359,7 +359,7 @@ The built-in function :func:`len` returns the length of a string::
359
359
Information about string formatting with :meth: `str.format `.
360
360
361
361
:ref: `old-string-formatting `
362
- The old formatting operations invoked when strings and Unicode strings are
362
+ The old formatting operations invoked when strings are
363
363
the left operand of the ``% `` operator are described in more detail here.
364
364
365
365
You can’t perform that action at this time.
0 commit comments