summaryrefslogtreecommitdiff
path: root/Doc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-06-27 23:37:17 -0700
committerGitHub <noreply@github.com>2018-06-27 23:37:17 -0700
commitbcb1ac82656fac22b12df387a5c6f4b10b7eefef (patch)
treeda1a7bb150aa89afd6727a01f27c7c39b1d8786f /Doc
parent468f97b4640e69b237a707a0ef9152d1c023f701 (diff)
downloadcpython-git-bcb1ac82656fac22b12df387a5c6f4b10b7eefef.tar.gz
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>
Diffstat (limited to 'Doc')
-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 5a7df0d980..8276b0128f 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;