characters, all remaining cased characters have lowercase.";
static PyObject*
-string_title(PyUnicodeObject *self, PyObject *args)
+string_title(PyStringObject *self, PyObject *args)
{
char *s = PyString_AS_STRING(self), *s_new;
int i, n = PyString_GET_SIZE(self);
and there is at least one character in S, 0 otherwise.";
static PyObject*
-string_isalpha(PyUnicodeObject *self, PyObject *args)
+string_isalpha(PyStringObject *self, PyObject *args)
{
register const unsigned char *p
= (unsigned char *) PyString_AS_STRING(self);
and there is at least one character in S, 0 otherwise.";
static PyObject*
-string_isalnum(PyUnicodeObject *self, PyObject *args)
+string_isalnum(PyStringObject *self, PyObject *args)
{
register const unsigned char *p
= (unsigned char *) PyString_AS_STRING(self);