Message79387
| Author |
vstinner |
| Recipients |
pitrou, vstinner |
| Date |
2009年01月08日.00:59:05 |
| SpamBayes Score |
0.1687581 |
| Marked as misclassified |
No |
| Message-id |
<1231376348.79.0.674683880763.issue4874@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Patch replacing "s*" parsing format by "y*" for:
- utf_7_decode()
- utf_8_decode()
- utf_16_decode()
- utf_16_le_decode()
- utf_16_be_decode()
- utf_16_ex_decode()
- utf_32_decode()
- utf_32_le_decode()
- utf_32_be_decode()
- utf_32_ex_decode()
- unicode_escape_decode()
- raw_unicode_escape_decode()
- latin_1_decode()
- ascii_decode()
- charmap_decode()
- mbcs_decode()
Using run_tests.sh, all tests are ok (with 19 skipped tests). I guess
that there is not tests for all these functions :-/
Note: codecs documentation was already correct:
.. method:: Codec.decode(input[, errors])
(...)
*input* must be a bytes object or one which provides the read-only
character
buffer interface -- for example, buffer objects and memory mapped
files. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2009年01月08日 00:59:09 | vstinner | set | recipients:
+ vstinner, pitrou |
| 2009年01月08日 00:59:08 | vstinner | set | messageid: <1231376348.79.0.674683880763.issue4874@psf.upfronthosting.co.za> |
| 2009年01月08日 00:59:07 | vstinner | link | issue4874 messages |
| 2009年01月08日 00:59:06 | vstinner | create |
|