[issue5888] mmap ehancement - resize with sequence notation

2014-06-22 Thread Ned Deily
Changes by Ned Deily : -- nosy: +neologix ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.or

[issue5888] mmap ehancement - resize with sequence notation

2014-06-16 Thread Josh Rosenberg
Josh Rosenberg added the comment: I see a few issues with this: 1. Changing the default behavior is a compatibility issue. I've written code that depends on exceptions being raised if slice assignment sizes don't match. 2. The performance cost is high; changing from rewriting in place to shrink

[issue5888] mmap ehancement - resize with sequence notation

2014-06-16 Thread Mark Lawrence
Mark Lawrence added the comment: @Brian this will go nowhere without a patch covering code, tests and documentation, are you interested in providing one? -- nosy: +BreamoreBoy versions: +Python 2.7, Python 3.5 -Python 3.4 ___ Python tracker

[issue5888] mmap ehancement - resize with sequence notation

2012-11-09 Thread Ezio Melotti
Changes by Ezio Melotti : -- versions: +Python 3.4 -Python 3.2 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue5888] mmap ehancement - resize with sequence notation

2010-07-09 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- components: +Library (Lib) stage: -> unit test needed versions: +Python 3.2 -Python 2.6 ___ Python tracker ___

[issue5888] mmap ehancement - resize with sequence notation

2009-04-30 Thread Brian Mearns
New submission from Brian Mearns : I thought it would be nice if mmaps could generally look a little more like sequences. Specifically, being able to resize+write using square-bracket notation as with lists: >>> x = [1,2,3,4,5] >>> x [1, 2, 3, 4, 5] >>> x[2:2] = [6,7,8,9] >>> x [1, 2, 6, 7, 8, 9