bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556)
_Py_IDENTIFIER(argv) is now unused.
This commit is contained in:
parent
1bcb8a6368
commit
3f45f5da8e
|
@ -9,7 +9,6 @@ PyDoc_STRVAR(warnings__doc__,
|
||||||
MODULE_NAME " provides basic warning filtering support.\n"
|
MODULE_NAME " provides basic warning filtering support.\n"
|
||||||
"It is a helper module to speed up interpreter start-up.");
|
"It is a helper module to speed up interpreter start-up.");
|
||||||
|
|
||||||
_Py_IDENTIFIER(argv);
|
|
||||||
_Py_IDENTIFIER(stderr);
|
_Py_IDENTIFIER(stderr);
|
||||||
#ifndef Py_DEBUG
|
#ifndef Py_DEBUG
|
||||||
_Py_IDENTIFIER(default);
|
_Py_IDENTIFIER(default);
|
||||||
|
|
Loading…
Reference in New Issue