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 jackdied
Recipients jackdied, ocean-city
Date 2009-03-31.18:39:12
SpamBayes Score 2.7345654e-06
Marked as misclassified No
Message-id <1238524754.69.0.783856349958.issue5387@psf.upfronthosting.co.za>
In-reply-to
Content
running a fresh 2.7 trunk
>>> a
<mmap.mmap object at 0xb7d9f9c0>
>>> a.move(-1, -1, -1
... )
Segmentation fault
jack@sprat:~/src/python-rw$ ./python 
Python 2.7a0 (trunk:70847M, Mar 31 2009, 14:14:31) 
[GCC 4.3.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> import mmap
>>> a = mmap.mmap(-1, 1000)
>>> a.move(0, 0, 0)
>>> a.move(-1, -1, 1)
Segmentation fault
History
Date User Action Args
2009-03-31 18:39:14jackdiedsetrecipients: + jackdied, ocean-city
2009-03-31 18:39:14jackdiedsetmessageid: <1238524754.69.0.783856349958.issue5387@psf.upfronthosting.co.za>
2009-03-31 18:39:13jackdiedlinkissue5387 messages
2009-03-31 18:39:12jackdiedcreate