diff options
| author | Sebastiano Tronto <sebastiano@tronto.net> | 2025-05-16 15:43:09 +0200 |
|---|---|---|
| committer | Sebastiano Tronto <sebastiano@tronto.net> | 2025-05-16 15:43:09 +0200 |
| commit | 30b43f08955158d4f2066f4b50fe8d1241b3177b (patch) | |
| tree | f2280c40a9ee721ac3223ec27e9ddbec6db224df /python | |
| parent | c2f3b1c9c534cadc81ebab3e718832d121cdf9cf (diff) | |
| download | nissy-core-30b43f08955158d4f2066f4b50fe8d1241b3177b.tar.gz nissy-core-30b43f08955158d4f2066f4b50fe8d1241b3177b.zip | |
Remove configure + make build system.
This commit also updates the README, cleans up some stuff and fixes
some oopsies.
Diffstat (limited to 'python')
| -rw-r--r-- | python/nissy_module.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/python/nissy_module.c b/python/nissy_module.c index 069dea0..5f5c0c4 100644 --- a/python/nissy_module.c +++ b/python/nissy_module.c | |||
| @@ -350,9 +350,9 @@ static PyMethodDef nissy_methods[] = { | |||
| 350 | { "getcube", getcube, METH_VARARGS, getcube_doc }, | 350 | { "getcube", getcube, METH_VARARGS, getcube_doc }, |
| 351 | { "solverinfo", solverinfo, METH_VARARGS, solverinfo_doc }, | 351 | { "solverinfo", solverinfo, METH_VARARGS, solverinfo_doc }, |
| 352 | { "gendata", gendata, METH_VARARGS, gendata_doc }, | 352 | { "gendata", gendata, METH_VARARGS, gendata_doc }, |
| 353 | { "checkdata", _checkdata, METH_VARARGS, checkdata_doc }, | 353 | { "checkdata", checkdata, METH_VARARGS, checkdata_doc }, |
| 354 | { "solve", solve, METH_VARARGS, solve_doc }, | 354 | { "solve", solve, METH_VARARGS, solve_doc }, |
| 355 | { "countmoves", _countmoves, METH_VARARGS, countmoves_doc }, | 355 | { "countmoves", countmoves, METH_VARARGS, countmoves_doc }, |
| 356 | { NULL, NULL, 0, NULL } | 356 | { NULL, NULL, 0, NULL } |
| 357 | }; | 357 | }; |
| 358 | 358 | ||
