Quote:
Originally Posted by Terisa de morgan
Edit: Found the problem, python3 doesn't like "<>", it prefers "!=". In any case, the function has disappeared silently... No warning to the user...
|
I feel mildly shocked to discover real use of <> in the wild, TBH.
Though you could fix this by using:
Code:
$ python3
>>> from __future__ import barry_as_FLUFL
>>> 2 != 3
File "<stdin>", line 1
2 != 3
^
SyntaxError: with Barry as BDFL, use '<>' instead of '!='