[issue10211] BufferObject doesn't support new buffer interface

2013-03-22 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- stage: -> committed/rejected ___ Python tracker ___ ___ Python-bugs-list mailing

[issue10211] BufferObject doesn't support new buffer interface

2013-03-22 Thread Kristján Valur Jónsson
Changes by Kristján Valur Jónsson : -- resolution: -> fixed status: open -> closed ___ Python tracker ___ ___ Python-bugs-list mailin

[issue10211] BufferObject doesn't support new buffer interface

2013-03-19 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6b3217b96a77 by Kristján Valur Jónsson in branch '2.7': Issue #10211 : Buffer object should support the new buffer interface. http://hg.python.org/cpython/rev/6b3217b96a77 -- nosy: +python-dev ___ Python

[issue10211] BufferObject doesn't support new buffer interface

2013-03-18 Thread Arfrever Frehtes Taifersar Arahesis
Changes by Arfrever Frehtes Taifersar Arahesis : -- nosy: +Arfrever ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscri

[issue10211] BufferObject doesn't support new buffer interface

2013-03-18 Thread Tres Seaver
Tres Seaver added the comment: Looks good to me. -- nosy: +tseaver ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscrib

[issue10211] BufferObject doesn't support new buffer interface

2013-03-18 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Bump, 2.7.4 will be cut next week ... -- ___ Python tracker ___ ___ Python-bugs-list mailing

[issue10211] BufferObject doesn't support new buffer interface

2012-03-20 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Bumping this. Do we want this fixed as a bug in 2.7 or left alone? -- ___ Python tracker ___ _

[issue10211] BufferObject doesn't support new buffer interface

2012-02-09 Thread Stefan Krah
Changes by Stefan Krah : -- nosy: +skrah ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.python.org

[issue10211] BufferObject doesn't support new buffer interface

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

[issue10211] BufferObject doesn't support new buffer interface

2010-10-27 Thread Kristján Valur Jónsson
Kristján Valur Jónsson added the comment: Do you mean that we should disable writing for the new style buffer interface? Currently the patch respects the Buffer object's read-only flag (self->b_readonly): static int buffer_getbuffer(PyBufferObject *self, Py_buffer *buf, int flags) {

[issue10211] BufferObject doesn't support new buffer interface

2010-10-27 Thread Éric Araujo
Éric Araujo added the comment: Unless there is a mismatch between the documentation and the code, I suspect this will be rejected by the release manager. -- nosy: +benjamin.peterson, eric.araujo ___ Python tracker

[issue10211] BufferObject doesn't support new buffer interface

2010-10-27 Thread Kristján Valur Jónsson
New submission from Kristján Valur Jónsson : The BufferObject in 2.7 doesn't support the new buffer interface. This makes it useless for use with the new memoryview object. This simple patch adds that support. -- components: Interpreter Core files: buffer_newbuf.patch keywords: easy, pat