Skip to content

Instantly share code, notes, and snippets.

@camelcaseblog
Created April 11, 2019 18:07
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save camelcaseblog/45ff99f8744737a0828ada1f5dadc23b to your computer and use it in GitHub Desktop.
Save camelcaseblog/45ff99f8744737a0828ada1f5dadc23b to your computer and use it in GitHub Desktop.
>>> 0 != 1
True
>>> from __future__ import barry_as_FLUFL
>>> 0 != 1
File "<stdin>", line 1
0 != 1
^
SyntaxError: with Barry as BDFL, use '<>' instead of '!='
>>> 0 <> 1
True
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment