commit | bf547fd3f255430bb32916b9949f1f8e72aee951 | [log] [tgz] |
---|---|---|
author | Victor Stinner <victor.stinner@haypocalc.com> | Wed Jul 13 21:47:31 2011 +0200 |
committer | Victor Stinner <victor.stinner@haypocalc.com> | Wed Jul 13 21:47:31 2011 +0200 |
tree | 470d659467e94f55d7a07d656d56d3e9cef7bc4b | |
parent | fbe84d92ab0be0dbfc3f8f16b8fd53d8373ba37c [diff] [blame] |
Close #4376: ctypes now supports nested structures in a endian different than the parent structure. Patch by Vlad Riscutia.
diff --git a/Misc/NEWS b/Misc/NEWS index 4aa48ae..b282c13 100644 --- a/Misc/NEWS +++ b/Misc/NEWS
@@ -30,6 +30,9 @@ Library ------- +- Issue #4376: ctypes now supports nested structures in a endian different than + the parent structure. Patch by Vlad Riscutia. + - Issue #12493: subprocess: Popen.communicate() now also handles EINTR errors if the process has only one pipe.