diff options
author | Andy Lester <andy@petdance.com> | 2020-02-13 22:42:56 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-02-13 20:42:56 -0800 |
commit | 7386a70746cf9aaf2d95db75d9201fb124f085df (patch) | |
tree | ad8f8bf74a24ef84d9070da6f1f7b55d36f880eb /Python | |
parent | a9edf44a2de9b23a1690b36cdfeed7b41ab763bd (diff) | |
download | cpython-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.c | 2 | ||||
-rw-r--r-- | Python/errors.c | 2 |
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 { |