Home
last modified time | relevance | path

Searched refs:assertion_error (Results 1 – 2 of 2) sorted by relevance

/external/python/cpython2/Python/
Dcompile.c2041 static PyObject *assertion_error = NULL; in compiler_assert() local
2046 if (assertion_error == NULL) { in compiler_assert()
2047 assertion_error = PyString_InternFromString("AssertionError"); in compiler_assert()
2048 if (assertion_error == NULL) in compiler_assert()
2064 ADDOP_O(c, LOAD_GLOBAL, assertion_error, names); in compiler_assert()
/external/python/cpython3/Python/
Dcompile.c2910 static PyObject *assertion_error = NULL; in compiler_assert() local
2916 if (assertion_error == NULL) { in compiler_assert()
2917 assertion_error = PyUnicode_InternFromString("AssertionError"); in compiler_assert()
2918 if (assertion_error == NULL) in compiler_assert()
2940 ADDOP_O(c, LOAD_GLOBAL, assertion_error, names); in compiler_assert()