mirror of
https://github.com/python/cpython.git
synced 2025-08-01 23:53:15 +00:00
Remove unused variable.
This commit is contained in:
parent
f9e115abf5
commit
fe096d2e2d
1 changed files with 1 additions and 1 deletions
|
@ -1355,7 +1355,7 @@ PyDoc_STRVAR(doc_binascii, "Conversion between binary data and ASCII");
|
||||||
PyMODINIT_FUNC
|
PyMODINIT_FUNC
|
||||||
initbinascii(void)
|
initbinascii(void)
|
||||||
{
|
{
|
||||||
PyObject *m, *d, *x;
|
PyObject *m, *d;
|
||||||
|
|
||||||
/* Create the module and add the functions */
|
/* Create the module and add the functions */
|
||||||
m = Py_InitModule3("binascii", binascii_module_methods, doc_binascii);
|
m = Py_InitModule3("binascii", binascii_module_methods, doc_binascii);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue