diff options
author | Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> | 2018-06-28 06:45:28 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-06-28 06:45:28 (GMT) |
commit | ff41cc7dee7fb2ab2ac39915a7ec6eb8808e6a1c (patch) | |
tree | 504538e8d3c9e60efebe4e2a74a70fa01472d9e8 | |
parent | 28c6b94f26661aa6f2bf7d885332c66c85ae4c95 (diff) | |
download | cpython-ff41cc7dee7fb2ab2ac39915a7ec6eb8808e6a1c.zip cpython-ff41cc7dee7fb2ab2ac39915a7ec6eb8808e6a1c.tar.gz cpython-ff41cc7dee7fb2ab2ac39915a7ec6eb8808e6a1c.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.c | 2 |
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; |