Message187662
| Author |
serhiy.storchaka |
| Recipients |
benjamin.peterson, serhiy.storchaka |
| Date |
2013年04月23日.18:11:54 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1366740714.43.0.637419404969.issue17823@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
Quoting Victor Stinner from msg106669:
"""
It's maybe possible for write some 2to3 fixers for the following examples:
"...".encode("base64") => base64.b64encode("...")
"...".encode("rot13") => do nothing (but display a warning?)
"...".encode("zlib") => zlib.compress("...")
"...".encode("hex") => base64.b16encode("...")
"...".encode("bz2") => bz2.compress("...")
"...".decode("base64") => base64.b64decode("...")
"...".decode("rot13") => do nothing (but display a warning?)
"...".decode("zlib") => zlib.decompress("...")
"...".decode("hex") => base64.b16decode("...")
"...".decode("bz2") => bz2.decompress("...")
"""
Unfortunately I don't know where is the syntax for writing fixers. |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2013年04月23日 18:11:54 | serhiy.storchaka | set | recipients:
+ serhiy.storchaka, benjamin.peterson |
| 2013年04月23日 18:11:54 | serhiy.storchaka | set | messageid: <1366740714.43.0.637419404969.issue17823@psf.upfronthosting.co.za> |
| 2013年04月23日 18:11:54 | serhiy.storchaka | link | issue17823 messages |
| 2013年04月23日 18:11:54 | serhiy.storchaka | create |
|