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 2ace503 commit b88ad69Copy full SHA for b88ad69
pydatastructs/graphs/_backend/cpp/algorithms.cpp
@@ -8,13 +8,13 @@ static PyMethodDef bfs_PyMethodDef[] = {
8
9
static struct PyModuleDef bfs_module = {
10
PyModuleDef_HEAD_INIT,
11
- "bfs",
+ "_bfs",
12
"BFS algorithms module",
13
-1,
14
bfs_PyMethodDef
15
};
16
17
-PyMODINIT_FUNC PyInit_bfs(void) {
+PyMODINIT_FUNC PyInit__bfs(void) {
18
PyObject *module = PyModule_Create(&bfs_module);
19
if (module == NULL) return NULL;
20
return module;
0 commit comments