[issue14713] PEP 414 installation hook fails with an AssertionError

2016-04-23 Thread Berker Peksag
Changes by Berker Peksag : -- resolution: -> duplicate stage: -> resolved status: open -> closed ___ Python tracker ___ ___ Python-b

[issue14713] PEP 414 installation hook fails with an AssertionError

2014-12-31 Thread A.M. Kuchling
Changes by A.M. Kuchling : -- nosy: -akuchling ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue14713] PEP 414 installation hook fails with an AssertionError

2012-11-03 Thread A.M. Kuchling
A.M. Kuchling added the comment: Duplicate of #9974. The tokenizer is choking on lines that end in '\'. So even this can't be parsed: a = 1 + \ 2 -- nosy: +akuchling superseder: -> tokenizer.untokenize not invariant with line continuations ___

[issue14713] PEP 414 installation hook fails with an AssertionError

2012-08-01 Thread Vinay Sajip
Changes by Vinay Sajip : -- versions: +Python 3.3 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.p

[issue14713] PEP 414 installation hook fails with an AssertionError

2012-05-03 Thread Vinay Sajip
Changes by Vinay Sajip : -- type: -> behavior ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.pyth

[issue14713] PEP 414 installation hook fails with an AssertionError

2012-05-03 Thread Vinay Sajip
New submission from Vinay Sajip : I'm not sure if I've done something wrong, but I get an AssertionError when trying to run the tokenizer on a Python file from the Django source. The gist at https://gist.github.com/1977558 has the files concerned: 1. test_tokenize.py - the script which fails 2