This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Provide __list__(self) along the lines of __str__(self)
Type: enhancement Stage: resolved
Components: Versions: Python 3.6
process
Status: closed Resolution: rejected
Dependencies: Superseder:
Assigned To: Nosy List: Rohith.PR, ethan.furman
Priority: normal Keywords:

Created on 2015-05-31 06:53 by Rohith.PR, last changed 2022-04-11 14:58 by admin. This issue is now closed.

Messages (2)
msg244522 - (view) Author: Rohith PR (Rohith.PR) Date: 2015-05-31 06:53
It would be cleaner to do list(obj) than obj.to_list() (Eg: in numpy).

PS: this is the first time that I'm contributing to python. If this feature request is accepted can I work on it myself?
msg244525 - (view) Author: Ethan Furman (ethan.furman) * (Python committer) Date: 2015-05-31 08:03
If somebody wants their class to support being turned into a list, the obvious answer is to have that class support iteration, and there are already three ways to do that:

  - supply an __iter__ that returns a separate iterator

  - supply an __iter__/__next__ that makes instances of the class be their own iterators

  - supply a __getitem__ that works with ints (0, 1, 2, ...) to return the values.

If numpy objects do not already support any of those three methods it probably means there isn't just one way to want to iterate through them, but you'll have to take that up with the numpy folks.

In the future you should discuss enhancement ideas on the Python Ideas list first.

Your contributions are welcome, but you'll need to sign the Contributors License Agreement first (found at https://www.python.org/psf/contrib/contrib-form/).

If I have misunderstood what you intended, please provide more context and an example.
History
Date User Action Args
2022-04-11 14:58:17adminsetgithub: 68523
2015-05-31 08:03:53ethan.furmansetstatus: open -> closed

nosy: + ethan.furman
messages: + msg244525

resolution: rejected
stage: resolved
2015-05-31 06:53:15Rohith.PRcreate