Skip to content

Commit 94fd053

Browse files
committed
fixup! CI: test the build and add some mingw specific tests
missing ref on the return value Fixes python#129
1 parent 3c09cdb commit 94fd053

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

mingw_smoketests.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -262,7 +262,7 @@ def test_c_ext_build(self):
262262
helloworld(PyObject *self, PyObject *args)
263263
{
264264
printf("Hello World\\n");
265-
return Py_None;
265+
Py_RETURN_NONE;
266266
}
267267
static PyMethodDef
268268
myMethods[] = {

0 commit comments

Comments
 (0)