diff options
author | Martin v. Löwis <martin@v.loewis.de> | 2002-12-11 14:04:59 (GMT) |
---|---|---|
committer | Martin v. Löwis <martin@v.loewis.de> | 2002-12-11 14:04:59 (GMT) |
commit | 95292d6caa3af3196c5b9f5f95dae209815c09e5 (patch) | |
tree | 193e6e6a45f1e1319e4bb4ba07a3fee838a2ca5d /Include/pyerrors.h | |
parent | 0e88c9f65d163c0c8551d0f079a19b71a8a9e3ca (diff) | |
download | cpython-95292d6caa3af3196c5b9f5f95dae209815c09e5.zip cpython-95292d6caa3af3196c5b9f5f95dae209815c09e5.tar.gz cpython-95292d6caa3af3196c5b9f5f95dae209815c09e5.tar.bz2 |
Constify filenames and scripts. Fixes #651362.
Diffstat (limited to 'Include/pyerrors.h')
-rw-r--r-- | Include/pyerrors.h | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/Include/pyerrors.h b/Include/pyerrors.h index 1adc6ec..a4ab62a 100644 --- a/Include/pyerrors.h +++ b/Include/pyerrors.h @@ -130,16 +130,17 @@ PyAPI_FUNC(void) PyErr_WriteUnraisable(PyObject *); /* Issue a warning or exception */ PyAPI_FUNC(int) PyErr_Warn(PyObject *, char *); -PyAPI_FUNC(int) PyErr_WarnExplicit(PyObject *, char *, - char *, int, char *, PyObject *); +PyAPI_FUNC(int) PyErr_WarnExplicit(PyObject *, const char *, + const char *, int, + const char *, PyObject *); /* In sigcheck.c or signalmodule.c */ PyAPI_FUNC(int) PyErr_CheckSignals(void); PyAPI_FUNC(void) PyErr_SetInterrupt(void); /* Support for adding program text to SyntaxErrors */ -PyAPI_FUNC(void) PyErr_SyntaxLocation(char *, int); -PyAPI_FUNC(PyObject *) PyErr_ProgramText(char *, int); +PyAPI_FUNC(void) PyErr_SyntaxLocation(const char *, int); +PyAPI_FUNC(PyObject *) PyErr_ProgramText(const char *, int); #ifdef Py_USING_UNICODE /* The following functions are used to create and modify unicode |