return STRINGLIB_NEW(str->ptr, str->end - str->ptr);
}
-/************************************************************************/
-/*********** Error handling and exception generation **************/
-/************************************************************************/
-
-/*
- Most of our errors are value errors, because to Python, the
- format string is a "value". Also, it's convenient to return
- a NULL when we are erroring out.
-
- XXX: need better error handling, per PEP 3101.
-*/
-static void *
-SetError(const char *s)
-{
- /* PyErr_Format always returns NULL */
- return PyErr_Format(PyExc_ValueError, "%s in format string", s);
-}
-
/************************************************************************/
/*********** Output string management functions ****************/
/************************************************************************/
getattr(PyObject *obj, SubString *name)
{
PyObject *newobj;
- PyObject *str = STRINGLIB_NEW(name->ptr, name->end - name->ptr);
+ PyObject *str = SubString_new_object(name);
if (str == NULL)
return NULL;
newobj = PyObject_GetAttr(obj, str);
getitem_str(PyObject *obj, SubString *name)
{
PyObject *newobj;
- PyObject *str = STRINGLIB_NEW(name->ptr, name->end - name->ptr);
+ PyObject *str = SubString_new_object(name);
if (str == NULL)
return NULL;
newobj = PyObject_GetItem(obj, str);
if (index == -1) {
/* look up in kwargs */
- PyObject *key = STRINGLIB_NEW(first.ptr, first.end - first.ptr);
+ PyObject *key = SubString_new_object(&first);
if (key == NULL)
goto error;
if ((kwargs == NULL) || (obj = PyDict_GetItem(kwargs, key)) == NULL) {
len = self->str.ptr - start;
if ((c == '}') && (at_end || (c != *self->str.ptr))) {
- SetError("Single } encountered");
+ PyErr_SetString(PyExc_ValueError, "Single '}' encountered "
+ "in format string");
return 0;
}
if (at_end && c == '{') {
- SetError("Single { encountered");
+ PyErr_SetString(PyExc_ValueError, "Single '{' encountered "
+ "in format string");
return 0;
}
if (!at_end) {
if (idx != -1)
obj = PyInt_FromSsize_t(idx);
else
- obj = STRINGLIB_NEW(name.ptr, name.end - name.ptr);
+ obj = SubString_new_object(&name);
if (obj == NULL)
goto error;
first_obj = PyInt_FromSsize_t(first_idx);
else
/* convert "first" into a string object */
- first_obj = STRINGLIB_NEW(first.ptr, first.end - first.ptr);
+ first_obj = SubString_new_object(&first);
if (first_obj == NULL)
goto error;