This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: [AST] assert failure on ``eval("u'\\Ufffffffe'")``
Type: Stage:
Components: Interpreter Core Versions:
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: Nosy List: brett.cannon, jpe
Priority: normal Keywords:

Created on 2005-04-19 23:24 by brett.cannon, last changed 2022-04-11 14:56 by admin. This issue is now closed.

Messages (4)
msg25082 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2005-04-19 23:24
Isolated the failure of test_unicode to be because of
the test of ``eval("u'\\Ufffffffe'")``.  What is odd is
that the Unicode string works fine as a literal at the
intepreter prompt.  Somehow eval() is triggering this
problem.
msg25083 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2005-04-25 02:27
Logged In: YES 
user_id=357491

jpe suggests looking at the comment of tracker #1170272; use
tokenizer.c instead of tokenizer_pgen.c (this is mentioned
in bug #1166714).
msg25084 - (view) Author: John Ehresman (jpe) * Date: 2005-04-25 02:35
Logged In: YES 
user_id=22785

Also look at patch 1189210, which probably should have just
been attached to this bug.  
msg25085 - (view) Author: Brett Cannon (brett.cannon) * (Python committer) Date: 2005-04-26 03:54
Logged In: YES 
user_id=357491

Fixed by patch #1189210.
History
Date User Action Args
2022-04-11 14:56:10adminsetgithub: 41881
2005-04-19 23:24:13brett.cannoncreate