[issue7720] Errors in tests and C implementation of raw FileIO

2013-03-17 Thread R. David Murray
R. David Murray added the comment: Looks to me like this issue is out of date. -- nosy: +r.david.murray resolution: - out of date stage: test needed - committed/rejected status: open - closed ___ Python tracker rep...@bugs.python.org

[issue7720] Errors in tests and C implementation of raw FileIO

2010-01-20 Thread STINNER Victor
STINNER Victor victor.stin...@haypocalc.com added the comment: IOTest.test_destructor() is already fixed in Python trunk (future 2.7) by r73394 (Issue #6215: backport the 3.1 io lib). I don't think that it would be possible to backport the 3.1 io lib in Python 2.6. Would it possible to

[issue7720] Errors in tests and C implementation of raw FileIO

2010-01-17 Thread Pascal Chambon
Pascal Chambon chambon.pas...@gmail.com added the comment: Hum, it seems that in python2.6, the C API for PyArg_ParseTuple isn't yet ready for bytes and bytearrays, is it ? y-like argument parsers don't exist, so I guess we can't easily patch the C api on this, only tests (replacing xxx by

[issue7720] Errors in tests and C implementation of raw FileIO

2010-01-17 Thread Brian Curtin
Changes by Brian Curtin cur...@acm.org: -- components: +Tests priority: - normal stage: - test needed type: - behavior ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7720 ___

[issue7720] Errors in tests and C implementation of raw FileIO

2010-01-17 Thread Ezio Melotti
Changes by Ezio Melotti ezio.melo...@gmail.com: -- nosy: +benjamin.peterson, pitrou ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue7720 ___ ___

[issue7720] Errors in tests and C implementation of raw FileIO

2010-01-16 Thread Pascal Chambon
New submission from Pascal Chambon chambon.pas...@gmail.com: My own fileio implementation fails against the latests versions of the io test suite, under python2.6, because these now require FileIO objects to accept unicode strings in their write methods, whereas the doc mentions raw streams