<!-- If you're new to Python and you're not sure whether what you're experiencing is a bug, the CPython issue tracker is not the right place to seek help. Consider the following options instead: - reading the Python tutorial: https://docs.python.org/3/tutorial/ - posting in the "Users" category on discuss.python.org: https://discuss.python.org/c/users/7 - emailing the Python-list mailing list: https://mail.python.org/mailman/listinfo/python-list - searching our issue tracker (https://github.com/python/cpython/issues) to see if your problem has already been reported --> # Bug report `from __future__ import barry_as_FLUFL` stops working in the REPL like before. Suspected issue comes from gh-99111. Before problematic commit: ```py >>> from __future__ import barry_as_FLUFL >>> 2<>3 True ``` After problematic commit: ```py >>> from __future__ import barry_as_FLUFL >>> 2<>3 File "<stdin>", line 1 2<>3 ^^ SyntaxError: invalid syntax ``` # Your environment <!-- Include as many relevant details as possible about the environment you experienced the bug in --> - CPython versions tested on: 3.12.0a7+, 3.13.0a0 - Operating system and architecture: 64-bit Win10 <!-- You can freely edit this text. Remove any lines you believe are unnecessary. --> <!-- gh-linked-prs --> ### Linked PRs * gh-105909 * gh-105930 <!-- /gh-linked-prs -->