From 702d43cab6ae05751b357dd2e7b7fac1a594113a Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Wed, 27 Jun 2018 23:41:29 -0700 Subject: [PATCH] bpo-33958: Doc: Remove unused variable in example (GH-7927) MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit (cherry picked from commit 62b6cea6b843076cfd6631eccd9347e8c3dd9458) Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) --- Doc/includes/run-func.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/includes/run-func.c b/Doc/includes/run-func.c index ead7bdd232..9caf1fdb20 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; -- 2.50.1