0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00

Remove unused variable reported by Walter Dörwald

This commit is contained in:
Neal Norwitz 2002-04-15 16:29:00 +00:00
parent 8e8af6e722
commit 726e013eff

View File

@ -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);