summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@gmail.com>2015-07-29 12:33:52 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2015-07-29 12:33:52 (GMT)
commit9c631a0f71a6c4beb5d29c10602a555e6a33fd12 (patch)
tree96a14618aabd32bdc8e644ffaedf46d3abad6f2a /Misc
parentbb1c079657fa8f8f9d7ec537f83b1fed1d9b413c (diff)
downloadcpython-9c631a0f71a6c4beb5d29c10602a555e6a33fd12.zip
cpython-9c631a0f71a6c4beb5d29c10602a555e6a33fd12.tar.gz
cpython-9c631a0f71a6c4beb5d29c10602a555e6a33fd12.tar.bz2
Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. Patch
written by Matthieu Gautier.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index 1f1d1b5..8626757 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -66,6 +66,9 @@ Core and Builtins
Library
-------
+- Issue #23319: Fix ctypes.BigEndianStructure, swap correctly bytes. Patch
+ written by Matthieu Gautier.
+
- Issue #23254: Document how to close the TCPServer listening socket.
Patch from Martin Panter.