From ff41cc7dee7fb2ab2ac39915a7ec6eb8808e6a1c Mon Sep 17 00:00:00 2001 From: "Miss Islington (bot)" <31488909+miss-islington@users.noreply.github.com> Date: Wed, 27 Jun 2018 23:45:28 -0700 Subject: bpo-33958: Doc: Remove unused variable in example (GH-7927) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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 ead7bdd..9caf1fd 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; -- cgit v0.12