[issue9304] unreproducible example in the memoryview documentation

2010-07-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: Fixed in r82981. Thank you for the report! -- resolution: -> fixed status: open -> closed ___ Python tracker ___ __

[issue9304] unreproducible example in the memoryview documentation

2010-07-19 Thread Antoine Pitrou
Antoine Pitrou added the comment: Right, it should be `v[1:4].tobytes()` instead. -- ___ Python tracker ___ ___ Python-bugs-list maili

[issue9304] unreproducible example in the memoryview documentation

2010-07-19 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +merwok ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue9304] unreproducible example in the memoryview documentation

2010-07-19 Thread Éric Araujo
Changes by Éric Araujo : -- nosy: +pitrou ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue9304] unreproducible example in the memoryview documentation

2010-07-19 Thread Carl Chenet
New submission from Carl Chenet : Hi, In the current documentation at http://docs.python.org/library/stdtypes.html#memoryview, the first example announces : >>> v = memoryview('abcefg') >>> v[1] 'b' >>> v[-1] 'g' >>> v[1:4] >>> str(v[1:4]) 'bce' Trying to reproduce this example I got : $