From: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> Date: Thu, 28 Jun 2018 06:45:28 +0000 (-0700) Subject: bpo-33958: Doc: Remove unused variable in example (GH-7927) X-Git-Tag: v3.6.7rc1~229 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff41cc7dee7fb2ab2ac39915a7ec6eb8808e6a1c;p=python bpo-33958: Doc: Remove unused variable in example (GH-7927) (cherry picked from commit 62b6cea6b843076cfd6631eccd9347e8c3dd9458) Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) --- 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;