summaryrefslogtreecommitdiffstats
path: root/Doc/includes
diff options
context:
space:
mode:
authorSrinivas Reddy Thatiparthy (శ్రీనివాస్ రెడ్డి తాటిపర్తి) <srinivasreddy@users.noreply.github.com>2018-06-28 06:25:20 (GMT)
committerINADA Naoki <methane@users.noreply.github.com>2018-06-28 06:25:20 (GMT)
commit62b6cea6b843076cfd6631eccd9347e8c3dd9458 (patch)
treef2be77b42d1baeffeba3265a0b5b1c7dca3cf62d /Doc/includes
parentaee5df5e16ec20e94d4315701315c32edae752f5 (diff)
downloadcpython-62b6cea6b843076cfd6631eccd9347e8c3dd9458.zip
cpython-62b6cea6b843076cfd6631eccd9347e8c3dd9458.tar.gz
cpython-62b6cea6b843076cfd6631eccd9347e8c3dd9458.tar.bz2
bpo-33958: Doc: Remove unused variable in example (GH-7927)
Diffstat (limited to 'Doc/includes')
-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 ead7bdd..9caf1fd 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;