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 belopolsky
Recipients belopolsky, skrah
Date 2012-09-03.13:25:48
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1346678750.91.0.0208236939901.issue15855@psf.upfronthosting.co.za>
In-reply-to
Content
With attached patch python -mpydoc memoryview display looks as follows:

...
 |  cast(...)
 |      M.cast(format[, shape]) -> memoryview
 |      
 |      Cast a memoryview to a new format or shape.
 |  
 |  release(...)
 |      M.release() -> None
 |      
 |      Release the underlying buffer exposed by the memoryview object.
 |  
 |  tobytes(...)
 |      M.tobytes() -> bytes
 |      
 |      Return the data in the buffer as a bytestring.
 |  
 |  tolist(...)
 |      M.tobytes() -> list
 |      
 |      Return the data in the buffer as a list of elements.
History
Date User Action Args
2012-09-03 13:25:50belopolskysetrecipients: + belopolsky, skrah
2012-09-03 13:25:50belopolskysetmessageid: <1346678750.91.0.0208236939901.issue15855@psf.upfronthosting.co.za>
2012-09-03 13:25:50belopolskylinkissue15855 messages
2012-09-03 13:25:49belopolskycreate