Use a newer API for creating the module so we don't have to create

the docstring manually.  Saves code and a call to PyString_FromString.
This commit is contained in:
Neal Norwitz 2007-08-23 17:55:33 +00:00
parent 361ed15383
commit 56dc955049
1 changed files with 1 additions and 4 deletions

View File

@ -1358,14 +1358,11 @@ initbinascii(void)
PyObject *m, *d, *x;
/* Create the module and add the functions */
m = Py_InitModule("binascii", binascii_module_methods);
m = Py_InitModule3("binascii", binascii_module_methods, doc_binascii);
if (m == NULL)
return;
d = PyModule_GetDict(m);
x = PyString_FromString(doc_binascii);
PyDict_SetItemString(d, "__doc__", x);
Py_XDECREF(x);
Error = PyErr_NewException("binascii.Error", PyExc_ValueError, NULL);
PyDict_SetItemString(d, "Error", Error);