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.

Author lemburg
Recipients Filip Haglund, abarry, lemburg, martin.panter
Date 2016-01-11.08:31:30
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1452501090.74.0.0581119983616.issue26077@psf.upfronthosting.co.za>
In-reply-to
Content
While it's theoretically possible, there's a reason why we haven't done this in the past: we don't want to keep the possibly large original object alive when using a slice.

For buffer interface types, you can already use memoryview to get a view in case you need this.

In most other cases, it's better to work with indexes into the original object rather than views on the data.
History
Date User Action Args
2016-01-11 08:31:30lemburgsetrecipients: + lemburg, martin.panter, abarry, Filip Haglund
2016-01-11 08:31:30lemburgsetmessageid: <1452501090.74.0.0581119983616.issue26077@psf.upfronthosting.co.za>
2016-01-11 08:31:30lemburglinkissue26077 messages
2016-01-11 08:31:30lemburgcreate