/prebuilts/python/darwin-x86/2.7.5/include/python2.7/ |
graminit.h | 38 #define assert_stmt 291 macro
|
/prebuilts/python/linux-x86/2.7.5/include/python2.7/ |
graminit.h | 38 #define assert_stmt 291 macro
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/ |
symbol.py | 48 assert_stmt = 291 variable
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/ |
symbol.py | 48 assert_stmt = 291 variable
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/ |
Grammar.txt | 55 import_stmt | global_stmt | exec_stmt | assert_stmt) 83 assert_stmt: 'assert' test [',' test]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/ |
Grammar.txt | 55 import_stmt | global_stmt | exec_stmt | assert_stmt) 83 assert_stmt: 'assert' test [',' test]
|
/external/antlr/antlr-3.4/runtime/JavaScript/tests/functional/ |
Python.g | 140 | assert_stmt 222 assert_stmt: 'assert' test (COMMA test)?
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/compiler/ |
transformer.py | 497 def assert_stmt(self, nodelist): member in class:Transformer [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/compiler/ |
transformer.py | 497 def assert_stmt(self, nodelist): member in class:Transformer [all...] |
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 553 # assert_stmt: 'assert' test [',' test]
|
py3_test_grammar.py | 497 # assert_stmt: 'assert' test [',' test]
|
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/lib2to3/tests/data/ |
py2_test_grammar.py | 553 # assert_stmt: 'assert' test [',' test]
|
py3_test_grammar.py | 497 # assert_stmt: 'assert' test [',' test]
|
/prebuilts/python/darwin-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 2 topics = {'assert': '\nThe ``assert`` statement\n************************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, ``assert expression``, is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, ``assert expression1, expression2``, is equivalent\nto\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that ``__debug__`` and ``AssertionError``\nrefer to the built-in variables with those names. In the current\nimplementation, the built-in variable ``__debug__`` is ``True`` under\nnormal circumstances, ``False`` when optimization is requested\n(command line option -O). The current code generator emits no code\nfor an assert statement when optimization is requested at compile\ntime. Note that it is unnecessary to include the source code for the\nexpression that failed in the error message; it will be displayed as\npart of the stack trace.\n\nAssignments to ``__debug__`` are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', [all...] |
/prebuilts/python/linux-x86/2.7.5/lib/python2.7/pydoc_data/ |
topics.py | 2 topics = {'assert': '\nThe ``assert`` statement\n************************\n\nAssert statements are a convenient way to insert debugging assertions\ninto a program:\n\n assert_stmt ::= "assert" expression ["," expression]\n\nThe simple form, ``assert expression``, is equivalent to\n\n if __debug__:\n if not expression: raise AssertionError\n\nThe extended form, ``assert expression1, expression2``, is equivalent\nto\n\n if __debug__:\n if not expression1: raise AssertionError(expression2)\n\nThese equivalences assume that ``__debug__`` and ``AssertionError``\nrefer to the built-in variables with those names. In the current\nimplementation, the built-in variable ``__debug__`` is ``True`` under\nnormal circumstances, ``False`` when optimization is requested\n(command line option -O). The current code generator emits no code\nfor an assert statement when optimization is requested at compile\ntime. Note that it is unnecessary to include the source code for the\nexpression that failed in the error message; it will be displayed as\npart of the stack trace.\n\nAssignments to ``__debug__`` are illegal. The value for the built-in\nvariable is determined when the interpreter starts.\n', [all...] |