summaryrefslogtreecommitdiff
path: root/Modules/unicodedata.c
diff options
context:
space:
mode:
authorGregory P. Smith <greg@mad-scientist.com>2008-06-09 04:58:54 +0000
committerGregory P. Smith <greg@mad-scientist.com>2008-06-09 04:58:54 +0000
commit134de0271f8611c6d4f4e53f3d45ee8eed65e3ab (patch)
tree7b466b9d59bca636b4a061191382d3f72324a344 /Modules/unicodedata.c
parent505f75b09d4cd430b69d02a07826d4510895d1e4 (diff)
downloadcpython-134de0271f8611c6d4f4e53f3d45ee8eed65e3ab.tar.gz
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.
Diffstat (limited to 'Modules/unicodedata.c')
-rw-r--r--Modules/unicodedata.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/Modules/unicodedata.c b/Modules/unicodedata.c
index 8ce280f16b..abb391a0a1 100644
--- a/Modules/unicodedata.c
+++ b/Modules/unicodedata.c
@@ -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;