From: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) Date: Thu, 28 Jun 2018 06:25:20 +0000 (+0530) Subject: bpo-33958: Doc: Remove unused variable in example (GH-7927) X-Git-Tag: v3.8.0a1~1475 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=62b6cea6b843076cfd6631eccd9347e8c3dd9458;p=thirdparty%2FPython%2Fcpython.git bpo-33958: Doc: Remove unused variable in example (GH-7927) --- 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;