Kaydet (Commit) 4b536d47 authored tarafından Antoine Pitrou's avatar Antoine Pitrou

Issue #14437: Fix building the _io module under Cygwin.

üst 6ca845c6
...@@ -78,6 +78,11 @@ Library ...@@ -78,6 +78,11 @@ Library
- Issue #6884: Fix long-standing bugs with MANIFEST.in parsing in distutils - Issue #6884: Fix long-standing bugs with MANIFEST.in parsing in distutils
on Windows. on Windows.
Build
-----
- Issue #14437: Fix building the _io module under Cygwin.
What's New in Python 2.7.3 release candidate 2? What's New in Python 2.7.3 release candidate 2?
=============================================== ===============================================
......
...@@ -72,7 +72,7 @@ typedef struct { ...@@ -72,7 +72,7 @@ typedef struct {
PyObject *filename; /* Not used, but part of the IOError object */ PyObject *filename; /* Not used, but part of the IOError object */
Py_ssize_t written; Py_ssize_t written;
} PyBlockingIOErrorObject; } PyBlockingIOErrorObject;
PyAPI_DATA(PyObject *) PyExc_BlockingIOError; extern PyObject *PyExc_BlockingIOError;
/* /*
* Offset type for positioning. * Offset type for positioning.
......
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