Commit 66c94e80 authored by Stefan Behnel's avatar Stefan Behnel

Merge branch '0.23.x'

Conflicts:
	CHANGES.rst
parents aed0ff79 f46e82cf
......@@ -57,6 +57,17 @@ Other changes
-------------
0.23.4 (2015-??-??)
===================
Bugs fixed
----------
* Compilation problem with MSVC in C99-ish mode.
* Warning about unused values in a helper macro.
0.23.3 (2015-09-29)
===================
......
......@@ -220,7 +220,7 @@ typedef struct {
#endif
#endif
#define __Pyx_void_to_None(void_result) (void_result, Py_INCREF(Py_None), Py_None)
#define __Pyx_void_to_None(void_result) ((void)(void_result), Py_INCREF(Py_None), Py_None)
/////////////// CInitCode ///////////////
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment