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 Matt.Gattis
Recipients Matt.Gattis
Date 2010-07-12.02:46:16
SpamBayes Score 0.00016103283
Marked as misclassified No
Message-id <1278902778.58.0.779431592784.issue9229@psf.upfronthosting.co.za>
In-reply-to
Content
This code works in 3.1.2 but not in 2.7:

>>> import mmap
>>> m = mmap.mmap(-1,20)
>>> v = memoryview(m)
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
TypeError: cannot make memory view because object does not have the buffer interface
History
Date User Action Args
2010-07-12 02:46:18Matt.Gattissetrecipients: + Matt.Gattis
2010-07-12 02:46:18Matt.Gattissetmessageid: <1278902778.58.0.779431592784.issue9229@psf.upfronthosting.co.za>
2010-07-12 02:46:17Matt.Gattislinkissue9229 messages
2010-07-12 02:46:16Matt.Gattiscreate