As you may know, Python's __future__ module has barry_as_FLUFL which is related to https://peps.python.org/pep-0401/. I was messing around with it in the python bot when I discovered it is considered Invalid Syntax.
The following python code:
from __future__ import barry_as_FLUFL
print(True <> False)
Is perfectly valid, and doesn't seem to be liked by the eval command, when ran on my local machine I have this output:
>>> from __future__ import barry_as_FLUFL
>>>
>>> print(True <> False)
True
Is there something missing within the eval command that needs to be added to be able to use Barry? Maybe it would be able to work using #2369?
As you may know, Python's
__future__module hasbarry_as_FLUFLwhich is related to https://peps.python.org/pep-0401/. I was messing around with it in the python bot when I discovered it is considered Invalid Syntax.The following python code:
Is perfectly valid, and doesn't seem to be liked by the eval command, when ran on my local machine I have this output:
Is there something missing within the eval command that needs to be added to be able to use Barry? Maybe it would be able to work using #2369?