Lines Matching defs:str
2657 #define PyDec_FromCString(str, context) \
2658 PyDecType_FromCString(&PyDec_Type, str, context)
2659 #define PyDec_FromCStringExact(str, context) \
2660 PyDecType_FromCStringExact(&PyDec_Type, str, context)
3366 "format arg must be str");
4801 PyObject *result, *str;
4803 str = dec_str(self);
4804 if (str == NULL) {
4808 result = Py_BuildValue("O(O)", Py_TYPE(self), str);
4809 Py_DECREF(str);