mirror of
https://github.com/python/cpython.git
synced 2025-09-11 19:27:07 +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
|
@ -61,10 +61,10 @@ PyObject *normalizestring(const char *string)
|
|||
return NULL;
|
||||
}
|
||||
|
||||
v = PyBytes_FromStringAndSize(NULL, len);
|
||||
v = PyString_FromStringAndSize(NULL, len);
|
||||
if (v == NULL)
|
||||
return NULL;
|
||||
p = PyBytes_AS_STRING(v);
|
||||
p = PyString_AS_STRING(v);
|
||||
for (i = 0; i < len; i++) {
|
||||
register char ch = string[i];
|
||||
if (ch == ' ')
|
||||
|
@ -112,7 +112,7 @@ PyObject *_PyCodec_Lookup(const char *encoding)
|
|||
v = normalizestring(encoding);
|
||||
if (v == NULL)
|
||||
goto onError;
|
||||
PyBytes_InternInPlace(&v);
|
||||
PyString_InternInPlace(&v);
|
||||
|
||||
/* First, try to lookup the name in the registry dictionary */
|
||||
result = PyDict_GetItem(interp->codec_search_cache, v);
|
||||
|
@ -190,7 +190,7 @@ PyObject *args_tuple(PyObject *object,
|
|||
if (errors) {
|
||||
PyObject *v;
|
||||
|
||||
v = PyBytes_FromString(errors);
|
||||
v = PyString_FromString(errors);
|
||||
if (v == NULL) {
|
||||
Py_DECREF(args);
|
||||
return NULL;
|
||||
|
@ -451,7 +451,7 @@ static void wrong_exception_type(PyObject *exc)
|
|||
if (string != NULL) {
|
||||
PyErr_Format(PyExc_TypeError,
|
||||
"don't know how to handle %.400s in error callback",
|
||||
PyBytes_AS_STRING(string));
|
||||
PyString_AS_STRING(string));
|
||||
Py_DECREF(string);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue