Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7c549c4 commit ec3af4eCopy full SHA for ec3af4e
1 file changed
Grammar/Grammar
@@ -89,7 +89,7 @@ and_test: not_test ('and' not_test)*
89
not_test: 'not' not_test | comparison
90
comparison: expr (comp_op expr)*
91
# <> isn't actually a valid comparison operator in Python. It's here for the
92
-# sake of a __future__ import described in PEP 401
+# sake of a __future__ import described in PEP 401 (which really works :-)
93
comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not'
94
star_expr: '*' expr
95
expr: xor_expr ('|' xor_expr)*
0 commit comments