Is there any replacement for python StringIO class, one that will work with bytes instead of strings?
It may not be obvious but if you used StringIO for processing binary data you are out of luck with Python 2.7 or newer.
|
Is there any replacement for python It may not be obvious but if you used StringIO for processing binary data you are out of luck with Python 2.7 or newer.
| |||||
feedback
|
|
Found the 2.7.2 docs. Try | |||||||||||
feedback
|
|
You say: "It may not be obvious but if you used StringIO for processing binary data you are out of luck with Python 2.7 or newer". It is not obvious because it is not true. If you have code that works on 2.6 or earlier, it continues to work on 2.7. Unedited screen dump (Windows Command prompt window wrapping at col 80 and all):
If you need to write code that runs on 2.7 and 3.x, use the If you need/want a single codebase that supports 2.7, 2.6, ... and 3.x, you will need to work a bit harder. Using the six module should help a lot. | |||
|
feedback
|
|
In Python 2.6/2.7, the io module is intended to be used for compatibility with Python 3.X. From the docs:
In Python versions earlier than 3.X the StringIO module contains the legacy version of StringIO, which unlike
| ||||
|
feedback
|