We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb27fbd commit f4a7bd3Copy full SHA for f4a7bd3
src/lru/_lru.c
@@ -753,7 +753,7 @@ static PyTypeObject LRUType = {
753
#if PY_MAJOR_VERSION >= 3
754
static struct PyModuleDef moduledef = {
755
PyModuleDef_HEAD_INIT,
756
- "lru", /* m_name */
+ "_lru", /* m_name */
757
lru_doc, /* m_doc */
758
-1, /* m_size */
759
NULL, /* m_methods */
@@ -780,7 +780,7 @@ moduleinit(void)
780
781
m = PyModule_Create(&moduledef);
782
#else
783
- m = Py_InitModule3("lru", NULL, lru_doc);
+ m = Py_InitModule3("_lru", NULL, lru_doc);
784
#endif
785
786
if (m == NULL)
0 commit comments