diff options
author | Erik Janssens <erik.janssens@conceptive.be> | 2018-09-05 06:29:42 (GMT) |
---|---|---|
committer | Benjamin Peterson <benjamin@python.org> | 2018-09-05 06:29:42 (GMT) |
commit | 874809ea389e6434787e773a6054a08e0b81f734 (patch) | |
tree | 176c6d48c0cebf51ccd2cd56f1cb8dcfededc656 /Misc | |
parent | 3876af4f7c2ef87db6d2d83efc229955968926dd (diff) | |
download | cpython-874809ea389e6434787e773a6054a08e0b81f734.zip cpython-874809ea389e6434787e773a6054a08e0b81f734.tar.gz cpython-874809ea389e6434787e773a6054a08e0b81f734.tar.bz2 |
closes bpo-34581 : Conditionalize use of __pragma in Modules/socketmodule.c. (GH-9067)
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS.d/next/Windows/2018-09-04-23-13-19.bpo-34581.lnbC0k.rst | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Windows/2018-09-04-23-13-19.bpo-34581.lnbC0k.rst b/Misc/NEWS.d/next/Windows/2018-09-04-23-13-19.bpo-34581.lnbC0k.rst new file mode 100644 index 0000000..2dfa1ae --- /dev/null +++ b/Misc/NEWS.d/next/Windows/2018-09-04-23-13-19.bpo-34581.lnbC0k.rst @@ -0,0 +1 @@ +Guard MSVC-specific code in socketmodule.c with ``#ifdef _MSC_VER``. |