[Python-checkins] bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556)

Brett Cannon webhook-mailer at python.org
Sat Jun 9 13:09:48 EDT 2018


https://github.com/python/cpython/commit/3f45f5da8eb052f1b54d37086c67b7094f35b67b
commit: 3f45f5da8eb052f1b54d37086c67b7094f35b67b
branch: master
author: Zackery Spytz <zspytz at gmail.com>
committer: Brett Cannon <brettcannon at users.noreply.github.com>
date: 2018-06-09T10:09:45-07:00
summary:

bpo-33375: Fix GCC warning in Python/_warnings.c (GH-7556)

_Py_IDENTIFIER(argv) is now unused.

files:
M Python/_warnings.c

diff --git a/Python/_warnings.c b/Python/_warnings.c
index 9c7a6e17b3b8..d6614b2cf6d4 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);



More information about the Python-checkins mailing list