Message131820
| Author |
techtonik |
| Recipients |
techtonik |
| Date |
2011年03月23日.00:20:45 |
| SpamBayes Score |
0.0005611366 |
| Marked as misclassified |
No |
| Message-id |
<1300839645.82.0.653929076098.issue11646@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
msvcrt function calls need to be renamed to unicode equivalents, because now they return bytes, which doesn't support string methods used to process the output (e.g. lower()).
http://docs.python.org/py3k/library/msvcrt.html
msvcrt.getch() -> msvcrt.getwch()
msvcrt.getche() -> msvcrt.getwche()
msvcrt.putch() -> msvcrt.putwch()
msvcrt.ungetch() -> msvcrt.ungetwch() |
|
History
|
|---|
| Date |
User |
Action |
Args |
| 2011年03月23日 00:20:45 | techtonik | set | recipients:
+ techtonik |
| 2011年03月23日 00:20:45 | techtonik | set | messageid: <1300839645.82.0.653929076098.issue11646@psf.upfronthosting.co.za> |
| 2011年03月23日 00:20:45 | techtonik | link | issue11646 messages |
| 2011年03月23日 00:20:45 | techtonik | create |
|