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

This commit is contained in:
Antoine Pitrou 2012-03-31 23:53:07 +02:00
parent 6ca845c66a
commit 4b536d4771
2 changed files with 6 additions and 1 deletions

View File

@ -78,6 +78,11 @@ Library
- Issue #6884: Fix long-standing bugs with MANIFEST.in parsing in distutils
on Windows.
Build
-----
- Issue #14437: Fix building the _io module under Cygwin.
What's New in Python 2.7.3 release candidate 2?
===============================================

View File

@ -72,7 +72,7 @@ typedef struct {
PyObject *filename; /* Not used, but part of the IOError object */
Py_ssize_t written;
} PyBlockingIOErrorObject;
PyAPI_DATA(PyObject *) PyExc_BlockingIOError;
extern PyObject *PyExc_BlockingIOError;
/*
* Offset type for positioning.