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 8fad801 commit 241c7edCopy full SHA for 241c7ed
Modules/_gdbmmodule.c
@@ -678,7 +678,8 @@ PyInit__gdbm(void) {
678
goto error;
679
}
680
681
-#if defined(GDBM_VERSION_MAJOR) && defined(GDBM_VERSION_MINOR) && defined(GDBM_VERSION_PATCH)
+#if defined(GDBM_VERSION_MAJOR) && defined(GDBM_VERSION_MINOR) && \
682
+ defined(GDBM_VERSION_PATCH)
683
PyObject *obj = Py_BuildValue("iii", GDBM_VERSION_MAJOR,
684
GDBM_VERSION_MINOR, GDBM_VERSION_PATCH);
685
if (obj == NULL) {
0 commit comments