Message368593
There is some discrepancy with the codeop module when running with the new parser:
./python -c "import codeop; codeop.CommandCompiler()('raise = 2\n\n', symbol='exec')"
(No error)
./python -Xoldparser -c "import codeop; codeop.CommandCompiler()('raise = 2\n\n', symbol='exec')"
...
File "<input>", line 1
raise = 2
^
SyntaxError: invalid syntax |
|
| Date |
User |
Action |
Args |
| 2020-05-10 22:50:12 | pablogsal | set | recipients:
+ pablogsal, gvanrossum, ned.deily, serhiy.storchaka, Anthony Sottile, lys.nikolaou, BTaskaya, hauntsaninja |
| 2020-05-10 22:50:12 | pablogsal | set | messageid: <[email protected]> |
| 2020-05-10 22:50:12 | pablogsal | link | issue40334 messages |
| 2020-05-10 22:50:11 | pablogsal | create | |
|