Kaydet (Commit) be8c6ae5 authored tarafından Serhiy Storchaka's avatar Serhiy Storchaka

Issue #24611: Fixed compiling the posix module on non-Windows platforms

without mknod() or makedev() (e.g. on Unixware).
üst a1b1e5f7
......@@ -34,6 +34,9 @@ Core and Builtins
Library
-------
- Issue #24611: Fixed compiling the posix module on non-Windows platforms
without mknod() or makedev() (e.g. on Unixware).
- Issue #18684: Fixed reading out of the buffer in the re module.
- Issue #24259: tarfile now raises a ReadError if an archive is truncated
......
......@@ -513,6 +513,8 @@ _Py_Dev_Converter(PyObject *obj, void *p)
return 1;
}
#endif
#ifdef HAVE_LONG_LONG
static PyObject *
_PyInt_FromDev(PY_LONG_LONG v)
......@@ -526,8 +528,6 @@ _PyInt_FromDev(PY_LONG_LONG v)
# define _PyInt_FromDev PyInt_FromLong
#endif
#endif
#if defined _MSC_VER && _MSC_VER >= 1400
/* Microsoft CRT in VS2005 and higher will verify that a filehandle is
......
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