bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556)
authorZackery Spytz <zspytz@gmail.com>
Sat, 9 Jun 2018 17:09:45 +0000 (11:09 -0600)
committerBrett Cannon <brettcannon@users.noreply.github.com>
Sat, 9 Jun 2018 17:09:45 +0000 (10:09 -0700)
_Py_IDENTIFIER(argv) is now unused.

Python/_warnings.c

index 9c7a6e17b3b89f812994c4201f7555b0a9f6a93e..d6614b2cf6d46b84e5acd7aeed7dc6e4255bb22b 100644 (file)
@@ -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);