Kaydet (Commit) 88c93449 authored tarafından Fred Drake's avatar Fred Drake

initpwd(): Clean up initialization, avoid PyModule_GetDict().

üst f42d32cb
......@@ -159,9 +159,9 @@ DL_EXPORT(void)
initpwd(void)
{
PyObject *m, *d;
m = Py_InitModule4("pwd", pwd_methods, pwd__doc__,
(PyObject *)NULL, PYTHON_API_VERSION);
d = PyModule_GetDict(m);
m = Py_InitModule3("pwd", pwd_methods, pwd__doc__);
PyStructSequence_InitType(&StructPwdType, &struct_pwd_type_desc);
PyDict_SetItemString(d, "struct_pwent", (PyObject *) &StructPwdType);
Py_INCREF((PyObject *) &StructPwdType);
PyModule_AddObject(m, "struct_pwent", (PyObject *) &StructPwdType);
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment