[issue1919] Backport of io.py

2008-03-28 Thread Georg Brandl
Georg Brandl <[EMAIL PROTECTED]> added the comment: The bytearray branch has been merged. -- nosy: +georg.brandl resolution: -> fixed status: open -> closed __ Tracker <[EMAIL PROTECTED]> ___

[issue1919] Backport of io.py

2008-01-24 Thread Guido van Rossum
Guido van Rossum added the comment: Backporting bytearray should be relatively clean since it's a brand new type right? -- nosy: +gvanrossum __ Tracker <[EMAIL PROTECTED]> __ _

[issue1919] Backport of io.py

2008-01-24 Thread Thomas Heller
Thomas Heller added the comment: > * backport bytearray and the new buffer interface from 3.0 backport of the new buffer interface is required for PEP 3118 which is marked accepted: " It is intended that this PEP will be back-ported to Python 2.6 by adding the C-API and the two functions to the

[issue1919] Backport of io.py

2008-01-24 Thread Christian Heimes
New submission from Christian Heimes: I've started on a back port of Python 3.0's io.py to Python 2.6. First results are promising. cd trunk svn cp ../py3k/Include/bytes_methods.h Include/ svn cp ../py3k/Objects/bytes_methods.c Objects/ svn cp ../py3k/Lib/io.py Lib/ svn cp ../py3k/Lib/test/test_