Home
last modified time | relevance | path

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

/freebsd-13.1/contrib/libucl/python/src/
H A Duclmodule.c5 static PyObject *SchemaError; variable
284 PyErr_SetString (SchemaError, err.msg); in ucl_validate()
307 SchemaError = PyErr_NewException("ucl.SchemaError", NULL, NULL); in init_macros()
308 Py_INCREF(SchemaError); in init_macros()
309 PyModule_AddObject(mod, "SchemaError", SchemaError); in init_macros()
/freebsd-13.1/contrib/libucl/python/tests/
H A Dtest_validation.py21 with self.assertRaises(ucl.SchemaError):