]> git.ipfire.org Git - thirdparty/Python/cpython.git/commitdiff
bpo-33958: Doc: Remove unused variable in example (GH-7927)
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>
Thu, 28 Jun 2018 06:37:17 +0000 (23:37 -0700)
committerGitHub <noreply@github.com>
Thu, 28 Jun 2018 06:37:17 +0000 (23:37 -0700)
(cherry picked from commit 62b6cea6b843076cfd6631eccd9347e8c3dd9458)

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

index 5a7df0d98056bc371aaaf4e4fdadf616527803e9..8276b0128fff18b46b1537aa9d953458a1b0ece9 100644 (file)
@@ -3,7 +3,7 @@
 int
 main(int argc, char *argv[])
 {
-    PyObject *pName, *pModule, *pDict, *pFunc;
+    PyObject *pName, *pModule, *pFunc;
     PyObject *pArgs, *pValue;
     int i;