[Python-checkins] bpo-33958: Doc: Remove unused variable in example (GH-7927)

Miss Islington (bot) webhook-mailer at python.org
Thu Jun 28 02:45:31 EDT 2018


https://github.com/python/cpython/commit/ff41cc7dee7fb2ab2ac39915a7ec6eb8808e6a1c
commit: ff41cc7dee7fb2ab2ac39915a7ec6eb8808e6a1c
branch: 3.6
author: Miss Islington (bot) <31488909+miss-islington at users.noreply.github.com>
committer: GitHub <noreply at github.com>
date: 2018-06-27T23:45:28-07:00
summary:

bpo-33958: Doc: Remove unused variable in example (GH-7927)

(cherry picked from commit 62b6cea6b843076cfd6631eccd9347e8c3dd9458)

Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <srinivasreddy at users.noreply.github.com>

files:
M Doc/includes/run-func.c

diff --git a/Doc/includes/run-func.c b/Doc/includes/run-func.c
index ead7bdd23209..9caf1fdb2010 100644
--- a/Doc/includes/run-func.c
+++ b/Doc/includes/run-func.c
@@ -3,7 +3,7 @@
 int
 main(int argc, char *argv[])
 {
-    PyObject *pName, *pModule, *pDict, *pFunc;
+    PyObject *pName, *pModule, *pFunc;
     PyObject *pArgs, *pValue;
     int i;
 



More information about the Python-checkins mailing list