summaryrefslogtreecommitdiffstats
path: root/Python/_warnings.c
diff options
context:
space:
mode:
authorZackery Spytz <zspytz@gmail.com>2018-06-09 17:09:45 (GMT)
committerBrett Cannon <brettcannon@users.noreply.github.com>2018-06-09 17:09:45 (GMT)
commit3f45f5da8eb052f1b54d37086c67b7094f35b67b (patch)
tree6946409642447732b5338b66705db1fad5919b28 /Python/_warnings.c
parent1bcb8a636857e3383d65aaf196f93edb949f2e79 (diff)
downloadcpython-3f45f5da8eb052f1b54d37086c67b7094f35b67b.zip
cpython-3f45f5da8eb052f1b54d37086c67b7094f35b67b.tar.gz
cpython-3f45f5da8eb052f1b54d37086c67b7094f35b67b.tar.bz2
bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556)
_Py_IDENTIFIER(argv) is now unused.
Diffstat (limited to 'Python/_warnings.c')
-rw-r--r--Python/_warnings.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/Python/_warnings.c b/Python/_warnings.c
index 9c7a6e1..d6614b2 100644
--- a/Python/_warnings.c
+++ b/Python/_warnings.c
@@ -9,7 +9,6 @@ PyDoc_STRVAR(warnings__doc__,
MODULE_NAME " provides basic warning filtering support.\n"
"It is a helper module to speed up interpreter start-up.");
-_Py_IDENTIFIER(argv);
_Py_IDENTIFIER(stderr);
#ifndef Py_DEBUG
_Py_IDENTIFIER(default);