summaryrefslogtreecommitdiff
path: root/Misc
diff options
context:
space:
mode:
authorTim Peters <tim.peters@gmail.com>2001-05-26 19:37:54 +0000
committerTim Peters <tim.peters@gmail.com>2001-05-26 19:37:54 +0000
commit24d20e68db406b2b49b1026c0746ba89d4f68a77 (patch)
tree02f812bbe639c03b18044540e7a130766b746fc0 /Misc
parent819f440b12fc0af061d4be66738136f7616a6113 (diff)
downloadcpython-24d20e68db406b2b49b1026c0746ba89d4f68a77.tar.gz
Change list.extend() error msgs and NEWS to reflect that list.extend()
now takes any iterable argument, not only sequences. NEEDS DOC CHANGES -- but I don't think we settled on a concise way to say this stuff.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 2 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1dc300d4a1..3a15837fc9 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -100,7 +100,8 @@ Core
map(), filter(), reduce(), zip()
list(), tuple() (PySequence_Tuple() and PySequence_Fast() in C API)
max(), min()
- .join() method of strings
+ join() method of strings
+ extend() method of lists
'x in y' and 'x not in y' (PySequence_Contains() in C API)
operator.countOf() (PySequence_Count() in C API)