Message77596
Passing in bytes to compile() works well for letting the parser handle
the decoding of a file when an encoding is specified, but it doesn't
take care of universal newlines::
>>> source = b'a = 1\r\nb = 2\r\n'
>>> compile(source, '<test>', 'exec')
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "<test>", line 1
a = 1
^
SyntaxError: invalid syntax |
|
Date |
User |
Action |
Args |
2008-12-11 06:54:07 | brett.cannon | set | recipients:
+ brett.cannon |
2008-12-11 06:54:07 | brett.cannon | set | messageid: <1228978447.23.0.301216613627.issue4628@psf.upfronthosting.co.za> |
2008-12-11 06:54:06 | brett.cannon | link | issue4628 messages |
2008-12-11 06:54:06 | brett.cannon | create | |
|