mirror of
https://github.com/google/brotli.git
synced 2026-07-08 17:56:58 +00:00
Update (#762)
* put LICENSE file into .jar * fix typo * add clarification comment in PY wrapper
This commit is contained in:
committed by
GitHub
parent
40f0fdcdc1
commit
c8b37e8fd1
@@ -703,13 +703,14 @@ PyDoc_STRVAR(brotli_doc, "Implementation module for the Brotli library.");
|
||||
|
||||
static struct PyModuleDef brotli_module = {
|
||||
PyModuleDef_HEAD_INIT,
|
||||
"_brotli",
|
||||
brotli_doc,
|
||||
0,
|
||||
brotli_methods,
|
||||
NULL,
|
||||
NULL,
|
||||
NULL
|
||||
"_brotli", /* m_name */
|
||||
brotli_doc, /* m_doc */
|
||||
0, /* m_size */
|
||||
brotli_methods, /* m_methods */
|
||||
NULL, /* m_reload */
|
||||
NULL, /* m_traverse */
|
||||
NULL, /* m_clear */
|
||||
NULL /* m_free */
|
||||
};
|
||||
#else
|
||||
#define INIT_BROTLI init_brotli
|
||||
|
||||
Reference in New Issue
Block a user