summaryrefslogtreecommitdiff
path: root/Python
diff options
context:
space:
mode:
authorAndy Lester <andy@petdance.com>2020-02-13 22:42:56 -0600
committerGitHub <noreply@github.com>2020-02-13 20:42:56 -0800
commit7386a70746cf9aaf2d95db75d9201fb124f085df (patch)
treead8f8bf74a24ef84d9070da6f1f7b55d36f880eb /Python
parenta9edf44a2de9b23a1690b36cdfeed7b41ab763bd (diff)
downloadcpython-git-7386a70746cf9aaf2d95db75d9201fb124f085df.tar.gz
closes bpo-39630: Update pointers to string literals to be const char *. (GH-18510)
Diffstat (limited to 'Python')
-rw-r--r--Python/codecs.c2
-rw-r--r--Python/errors.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/Python/codecs.c b/Python/codecs.c
index ce86cb20cc..e5bcdb09fc 100644
--- a/Python/codecs.c
+++ b/Python/codecs.c
@@ -1407,7 +1407,7 @@ static PyObject *surrogateescape_errors(PyObject *self, PyObject *exc)
static int _PyCodecRegistry_Init(void)
{
static struct {
- char *name;
+ const char *name;
PyMethodDef def;
} methods[] =
{
diff --git a/Python/errors.c b/Python/errors.c
index f11b66e795..61dc597916 100644
--- a/Python/errors.c
+++ b/Python/errors.c
@@ -614,7 +614,7 @@ PyErr_SetFromErrnoWithFilenameObjects(PyObject *exc, PyObject *filenameObject, P
#ifndef MS_WINDOWS
if (i != 0) {
- char *s = strerror(i);
+ const char *s = strerror(i);
message = PyUnicode_DecodeLocale(s, "surrogateescape");
}
else {