From 3f45f5da8eb052f1b54d37086c67b7094f35b67b Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Sat, 9 Jun 2018 11:09:45 -0600 Subject: bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556) _Py_IDENTIFIER(argv) is now unused. --- Python/_warnings.c | 1 - 1 file changed, 1 deletion(-) 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); -- cgit v0.12