mirror of
https://github.com/python/cpython.git
synced 2025-09-26 18:29:57 +00:00
This reverts r63675 based on the discussion in this thread:
http://mail.python.org/pipermail/python-dev/2008-June/079988.html Python 2.6 should stick with PyString_* in its codebase. The PyBytes_* names in the spirit of 3.0 are available via a #define only. See the email thread.
This commit is contained in:
parent
e98839a1f4
commit
dd96db63f6
173 changed files with 2275 additions and 2280 deletions
|
@ -266,7 +266,7 @@ unicodedata_category(PyObject *self, PyObject *args)
|
|||
if (old->category_changed != 0xFF)
|
||||
index = old->category_changed;
|
||||
}
|
||||
return PyBytes_FromString(_PyUnicode_CategoryNames[index]);
|
||||
return PyString_FromString(_PyUnicode_CategoryNames[index]);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(unicodedata_bidirectional__doc__,
|
||||
|
@ -297,7 +297,7 @@ unicodedata_bidirectional(PyObject *self, PyObject *args)
|
|||
else if (old->bidir_changed != 0xFF)
|
||||
index = old->bidir_changed;
|
||||
}
|
||||
return PyBytes_FromString(_PyUnicode_BidirectionalNames[index]);
|
||||
return PyString_FromString(_PyUnicode_BidirectionalNames[index]);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(unicodedata_combining__doc__,
|
||||
|
@ -383,7 +383,7 @@ unicodedata_east_asian_width(PyObject *self, PyObject *args)
|
|||
if (old->category_changed == 0)
|
||||
index = 0; /* unassigned */
|
||||
}
|
||||
return PyBytes_FromString(_PyUnicode_EastAsianWidthNames[index]);
|
||||
return PyString_FromString(_PyUnicode_EastAsianWidthNames[index]);
|
||||
}
|
||||
|
||||
PyDoc_STRVAR(unicodedata_decomposition__doc__,
|
||||
|
@ -414,7 +414,7 @@ unicodedata_decomposition(PyObject *self, PyObject *args)
|
|||
if (self) {
|
||||
const change_record *old = get_old_record(self, c);
|
||||
if (old->category_changed == 0)
|
||||
return PyBytes_FromString(""); /* unassigned */
|
||||
return PyString_FromString(""); /* unassigned */
|
||||
}
|
||||
|
||||
if (code < 0 || code >= 0x110000)
|
||||
|
@ -453,7 +453,7 @@ unicodedata_decomposition(PyObject *self, PyObject *args)
|
|||
|
||||
decomp[i] = '\0';
|
||||
|
||||
return PyBytes_FromString(decomp);
|
||||
return PyString_FromString(decomp);
|
||||
}
|
||||
|
||||
static void
|
||||
|
@ -518,7 +518,7 @@ nfd_nfkd(PyObject *self, PyObject *input, int k)
|
|||
/* Hangul Decomposition adds three characters in
|
||||
a single step, so we need atleast that much room. */
|
||||
if (space < 3) {
|
||||
Py_ssize_t newsize = PyBytes_GET_SIZE(result) + 10;
|
||||
Py_ssize_t newsize = PyString_GET_SIZE(result) + 10;
|
||||
space += 10;
|
||||
if (PyUnicode_Resize(&result, newsize) == -1)
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue