[Python-Dev] cpython (3.2): Issue #13255: wrong docstrings in array module. (original) (raw)

Antoine Pitrou solipsis at pitrou.net
Mon Oct 24 13:54:08 CEST 2011


On Mon, 24 Oct 2011 13:17:53 +0200 florent.xicluna <python-checkins at python.org> wrote:

@@ -2557,7 +2557,7 @@ _extend() -- extend array by appending multiple elements from an iterable\n_ _fromfile() -- read items from a file object\n_ _fromlist() -- append items from the list\n_ _-fromstring() -- append items from the string\n_ _+frombytes() -- append items from the string\n_ _index() -- return index of first occurrence of an object\n_ _insert() -- insert a new item into the array at a provided position\n_ _pop() -- remove and return item (default last)\n_ @@ -2565,7 +2565,7 @@ _reverse() -- reverse the order of the items in the array\n_ _tofile() -- write all items to a file object\n_ _tolist() -- return the array converted to an ordinary list\n_ _-tostring() -- return the array converted to a string\n_ _+tobytes() -- return the array converted to a string\n_

The alphabetical order should probably be kept.

Regards

Antoine.



More information about the Python-Dev mailing list