Home | History | Annotate | Download | only in _decimal

Lines Matching refs:DecimalException

148 static PyObject *DecimalException = NULL;
5630 ASSIGN_PTR(DecimalException, PyErr_NewException(
5631 "decimal.DecimalException",
5633 Py_INCREF(DecimalException);
5634 CHECK_INT(PyModule_AddObject(m, "DecimalException", DecimalException));
5647 base = PyTuple_Pack(2, DecimalException, PyExc_TypeError);
5650 base = PyTuple_Pack(2, DecimalException, PyExc_ZeroDivisionError);
5662 base = PyTuple_Pack(1, DecimalException);