mirror of
https://github.com/python/cpython.git
synced 2025-07-23 03:05:38 +00:00
Issue #24436: Added const qualifiers for char* arguments of _PyTraceback_Add.
Patch by Michael Ensslin.
This commit is contained in:
commit
86621ae19b
2 changed files with 2 additions and 2 deletions
|
@ -143,7 +143,7 @@ PyTraceBack_Here(PyFrameObject *frame)
|
|||
}
|
||||
|
||||
/* Insert a frame into the traceback for (funcname, filename, lineno). */
|
||||
void _PyTraceback_Add(char *funcname, char *filename, int lineno)
|
||||
void _PyTraceback_Add(const char *funcname, const char *filename, int lineno)
|
||||
{
|
||||
PyObject *globals = NULL;
|
||||
PyCodeObject *code = NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue