Message117554
Possible approach (untested):
def get_tokens(source):
if hasattr(source, "encode"):
# Already decoded, so bypass encoding detection
return _tokenize(io.StringIO(source).readline, None)
# Otherwise attempt to detect the correct encoding
return tokenize(io.BytesIO(source).readline) |
|
| Date |
User |
Action |
Args |
| 2010-09-28 21:54:18 | ncoghlan | set | recipients:
+ ncoghlan, michael.foord, meador.inge |
| 2010-09-28 21:54:18 | ncoghlan | set | messageid: <[email protected]> |
| 2010-09-28 21:54:16 | ncoghlan | link | issue9969 messages |
| 2010-09-28 21:54:16 | ncoghlan | create | |
|