[issue28986] Docs should say set.update takes iterable

2016-12-16 Thread Raymond Hettinger
Changes by Raymond Hettinger : -- resolution: -> not a bug status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailing

[issue28986] Docs should say set.update takes iterable

2016-12-16 Thread R. David Murray
R. David Murray added the comment: update([iterable]) is a specific case of update(*others). udpate([1, 2], [3, 4]) is another specific case. -- nosy: +r.david.murray ___ Python tracker __

[issue28986] Docs should say set.update takes iterable

2016-12-16 Thread Nick Evans
New submission from Nick Evans: The docs say that set.update takes *args: update(*others) But actually set.update takes an optional iterable: update([iterable]) -- assignee: docs@python components: Documentation messages: 283394 nosy: docs@python, nre3976 priority: normal severity