diff options
author | Neal Norwitz <nnorwitz@gmail.com> | 2002-04-15 16:29:00 (GMT) |
---|---|---|
committer | Neal Norwitz <nnorwitz@gmail.com> | 2002-04-15 16:29:00 (GMT) |
commit | 726e013eff519a3e3a40b0313e776608c12fafc5 (patch) | |
tree | 88e9b30a6b6093bbd9364e203be934ed76af6343 /Modules/pwdmodule.c | |
parent | 8e8af6e72210a5ae59cbed73084ff93a7c49d835 (diff) | |
download | cpython-726e013eff519a3e3a40b0313e776608c12fafc5.zip cpython-726e013eff519a3e3a40b0313e776608c12fafc5.tar.gz cpython-726e013eff519a3e3a40b0313e776608c12fafc5.tar.bz2 |
Remove unused variable reported by Walter Dörwald
Diffstat (limited to 'Modules/pwdmodule.c')
-rw-r--r-- | Modules/pwdmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/pwdmodule.c b/Modules/pwdmodule.c index eeed608..701ae03 100644 --- a/Modules/pwdmodule.c +++ b/Modules/pwdmodule.c @@ -158,7 +158,7 @@ static PyMethodDef pwd_methods[] = { DL_EXPORT(void) initpwd(void) { - PyObject *m, *d; + PyObject *m; m = Py_InitModule3("pwd", pwd_methods, pwd__doc__); PyStructSequence_InitType(&StructPwdType, &struct_pwd_type_desc); |