summaryrefslogtreecommitdiff
path: root/Modules/nismodule.c
diff options
context:
space:
mode:
authorChristian Heimes <christian@cheimes.de>2008-05-26 12:51:38 +0000
committerChristian Heimes <christian@cheimes.de>2008-05-26 12:51:38 +0000
commita6ca04c089701c8156af6ee8a1f984d1fd98119d (patch)
treed77e00e4bdf86d071f503dc6cee33078bdc80cce /Modules/nismodule.c
parent07d790f57a21b8e96d5aa9b937180370e19ecc3f (diff)
downloadcpython-a6ca04c089701c8156af6ee8a1f984d1fd98119d.tar.gz
Renamed PyString to PyBytes
Diffstat (limited to 'Modules/nismodule.c')
-rw-r--r--Modules/nismodule.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/Modules/nismodule.c b/Modules/nismodule.c
index 0811430cf0..8dd1d96733 100644
--- a/Modules/nismodule.c
+++ b/Modules/nismodule.c
@@ -115,8 +115,8 @@ nis_foreach (int instatus, char *inkey, int inkeylen, char *inval,
if (invallen > 0 && inval[invallen-1] == '\0')
invallen--;
}
- key = PyString_FromStringAndSize(inkey, inkeylen);
- val = PyString_FromStringAndSize(inval, invallen);
+ key = PyBytes_FromStringAndSize(inkey, inkeylen);
+ val = PyBytes_FromStringAndSize(inval, invallen);
if (key == NULL || val == NULL) {
/* XXX error -- don't know how to handle */
PyErr_Clear();
@@ -146,7 +146,7 @@ nis_get_default_domain (PyObject *self)
if ((err = yp_get_default_domain(&domain)) != 0)
return nis_error(err);
- res = PyString_FromStringAndSize (domain, strlen(domain));
+ res = PyBytes_FromStringAndSize (domain, strlen(domain));
return res;
}
@@ -178,7 +178,7 @@ nis_match (PyObject *self, PyObject *args, PyObject *kwdict)
len--;
if (err != 0)
return nis_error(err);
- res = PyString_FromStringAndSize (match, len);
+ res = PyBytes_FromStringAndSize (match, len);
free (match);
return res;
}
@@ -398,7 +398,7 @@ nis_maps (PyObject *self, PyObject *args, PyObject *kwdict)
if ((list = PyList_New(0)) == NULL)
return NULL;
for (maps = maps; maps; maps = maps->next) {
- PyObject *str = PyString_FromString(maps->map);
+ PyObject *str = PyBytes_FromString(maps->map);
if (!str || PyList_Append(list, str) < 0)
{
Py_DECREF(list);