@@ -1,5 +1,9 @@
0.7.1 UNRELEASED
+ BUG FIXES
+
+ * Fix the build on Windows. (Pascal Quantin)
0.7.0 2011-01-21
FEATURES
@@ -20,6 +20,10 @@
#include <Python.h>
#include <sys/stat.h>
+#ifdef _MSC_VER
+typedef unsigned short mode_t;
+#endif
#if (PY_VERSION_HEX < 0x02050000)
typedef int Py_ssize_t;
#endif