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: <1285710858.05.0.587248130168.issue9969@psf.upfronthosting.co.za> |
2010-09-28 21:54:16 | ncoghlan | link | issue9969 messages |
2010-09-28 21:54:16 | ncoghlan | create | |
|