| 287 | |
| 288 | === XML with XML declaration must be bytes === |
| 289 | |
| 290 | Any XML that contains an XML declaration must be UTF-8 encoded {{{bytes}}}. In Python-2, {{{bytes}}} is synonymous with {{{str}}} - but in Python-3 it is a different data type. |
| 291 | |
| 292 | - {{{S3XML.tostring}}} and {{{S3Resource.export_xml}}} will always return {{{bytes}}} |
| 293 | - if string operations must be performed on such XML, use {{{s3_str}}} to convert it |
| 294 | |
| 295 | === BytesIO === |
| 296 | |
| 297 | Certain libraries expect a file-like object to represent binary data. Whilst in Python-2, this can be handled with {{{StringIO}}}, Python-3 requires to use {{{BytesIO}}} instead. |
| 298 | |
| 299 | - {{{zipfile}}} expects and returns {{{bytes}}} |