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 christian.heimes
Recipients christian.heimes
Date 2008-01-24.11:41:37
SpamBayes Score 0.0014262724
Marked as misclassified No
Message-id <1201174901.71.0.122218114057.issue1919@psf.upfronthosting.co.za>
In-reply-to
Content
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_io.py Lib/test/
svn cp ../py3k/Modules/_fileio.c Modules/
patch -p0 < trunk_io.patch

I'm not sure how to proceed with the missing bytearray type:

 * backport bytearray and the new buffer interface from 3.0
 * write a replacement for 2.6
 * replace the bytearray code with new code
History
Date User Action Args
2008-01-24 11:41:41christian.heimessetspambayes_score: 0.00142627 -> 0.0014262724
recipients: + christian.heimes
2008-01-24 11:41:41christian.heimessetspambayes_score: 0.00142627 -> 0.00142627
messageid: <1201174901.71.0.122218114057.issue1919@psf.upfronthosting.co.za>
2008-01-24 11:41:39christian.heimeslinkissue1919 messages
2008-01-24 11:41:38christian.heimescreate