Home
last modified time | relevance | path

Searched refs:not_test (Results 1 – 8 of 8) sorted by relevance

/third_party/python/Lib/lib2to3/fixes/
Dfix_has_key.py74 if (node.parent.type == syms.not_test and
87 if arg.type in (syms.comparison, syms.not_test, syms.and_test,
Dfix_idioms.py108 test = Node(syms.not_test, [Name("not"), test])
/third_party/python/Lib/lib2to3/
DGrammar.txt137 and_test: not_test ('and' not_test)*
138 not_test: 'not' not_test | comparison
/third_party/python/Grammar/
DGrammar136 and_test: not_test ('and' not_test)*
137 not_test: 'not' not_test | comparison
/third_party/python/Include/
Dgraminit.h59 #define not_test 312 macro
/third_party/python/Lib/
Dsymbol.py80 not_test = 312 variable
/third_party/python/Doc/reference/
Dexpressions.rst1622 and_test: `not_test` | `and_test` "and" `not_test`
1623 not_test: `comparison` | "not" `not_test`
/third_party/python/Python/
Dast.c2819 case not_test: in ast_for_expr()
3083 not_test, in ast_for_call()