summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-06-28 06:37:17 (GMT)
committerGitHub <noreply@github.com>2018-06-28 06:37:17 (GMT)
commitbcb1ac82656fac22b12df387a5c6f4b10b7eefef (patch)
treeda1a7bb150aa89afd6727a01f27c7c39b1d8786f
parent468f97b4640e69b237a707a0ef9152d1c023f701 (diff)
downloadcpython-bcb1ac82656fac22b12df387a5c6f4b10b7eefef.zip
cpython-bcb1ac82656fac22b12df387a5c6f4b10b7eefef.tar.gz
cpython-bcb1ac82656fac22b12df387a5c6f4b10b7eefef.tar.bz2
bpo-33958: Doc: Remove unused variable in example (GH-7927)
(cherry picked from commit 62b6cea6b843076cfd6631eccd9347e8c3dd9458) Co-authored-by: Srinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <srinivasreddy@users.noreply.github.com>
-rw-r--r--Doc/includes/run-func.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/includes/run-func.c b/Doc/includes/run-func.c
index 5a7df0d..8276b01 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;