summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorMartin Panter <vadmium+py@gmail.com>2016-08-04 02:38:59 (GMT)
committerMartin Panter <vadmium+py@gmail.com>2016-08-04 02:38:59 (GMT)
commit70214ad55d475ab9b719ab0d908e48385bad981d (patch)
treefb2ed6d6f8958fbfacef41d99545fba214366770 /Misc/NEWS
parent0c859f362c77f705a235a1a8513313e5d6d01c84 (diff)
downloadcpython-70214ad55d475ab9b719ab0d908e48385bad981d.zip
cpython-70214ad55d475ab9b719ab0d908e48385bad981d.tar.gz
cpython-70214ad55d475ab9b719ab0d908e48385bad981d.tar.bz2
Issue #17599: Use unique _Py_REPARSE_DATA_BUFFER etc names to avoid conflict
The conflict occurs with Min GW, which already defines REPARSE_DATA_BUFFER. Also, Min GW uses a lowercase <windows.h> filename.
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 155d355..3ad1cd5 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -14,6 +14,9 @@ Core and Builtins
- Issue #17596: Include <wincrypt.h> to help with Min GW building.
+- Issue #17599: On Windows, rename the privately defined REPARSE_DATA_BUFFER
+ structure to avoid conflicting with the definition from Min GW.
+
- Issue #27507: Add integer overflow check in bytearray.extend(). Patch by
Xiang Zhang.