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:
parent
361ed15383
commit
56dc955049
|
@ -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);
|
||||
|
|
Loading…
Reference in New Issue