[issue21545] Tutorial: examples and comment about mutation methods

2014-05-23 Thread David Harrigan
David Harrigan added the comment: Thanks for the info, I've signed the agreement. -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue21545] Tutorial: examples and comment about mutation methods

2014-05-22 Thread Terry J. Reedy
Terry J. Reedy added the comment: Thanks David. If this is not to be your last contribution, and we hope not, please fill out the contributor agreement, if you have hot already, at https://www.python.org/psf/contrib/contrib-form/ -- resolution: -> fixed stage: needs patch -> resolved s

[issue21545] Tutorial: examples and comment about mutation methods

2014-05-22 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6fc09f30b514 by Terry Jan Reedy in branch '2.7': Issue #21545: Add .pop example and tweak comment about pure mutation methods. http://hg.python.org/cpython/rev/6fc09f30b514 New changeset 3f2b6034b73a by Terry Jan Reedy in branch '3.4': Issue #21545:

[issue21545] Tutorial: examples and comment about mutation methods

2014-05-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: That looks good and is ready to apply. -- nosy: +rhettinger ___ Python tracker ___ ___ Python-bug

[issue21545] Tutorial: examples and comment about mutation methods

2014-05-22 Thread David Harrigan
David Harrigan added the comment: I've added the example and modified the final comment. -- keywords: +patch nosy: +David.Harrigan Added file: http://bugs.python.org/file35311/datastructures.patch ___ Python tracker

[issue21545] Tutorial: examples and comment about mutation methods

2014-05-20 Thread Chris Rebert
Changes by Chris Rebert : -- nosy: +cvrebert ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pytho

[issue21545] Tutorial: examples and comment about mutation methods

2014-05-20 Thread Terry J. Reedy
New submission from Terry J. Reedy: The Tutorial section More on Lists https://docs.python.org/3.4/tutorial/datastructures.html#more-on-lists includes list.pop but ignores it in the example and final comment. I think the examples should be augmented and the comment modified. 1. (simplest) End