summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-13 19:43:18 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-13 19:43:18 (GMT)
commit6636121950a08de9d437cc2d76ac272cdceb7ecc (patch)
tree1519bd4609f357a6027ae22e8bdc0939a0f7ca9e /Misc
parentcb4ae815b5db6c9339c7c77e1d45e850ed76e497 (diff)
downloadcpython-6636121950a08de9d437cc2d76ac272cdceb7ecc.zip
cpython-6636121950a08de9d437cc2d76ac272cdceb7ecc.tar.gz
cpython-6636121950a08de9d437cc2d76ac272cdceb7ecc.tar.bz2
Close #4376: ctypes now supports nested structures in a endian different than
the parent structure. Patch by Vlad Riscutia.
Diffstat (limited to 'Misc')
-rw-r--r--Misc/ACKS1
-rw-r--r--Misc/NEWS3
2 files changed, 4 insertions, 0 deletions
diff --git a/Misc/ACKS b/Misc/ACKS
index 625317d..ee9b373 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -735,6 +735,7 @@ Jan Pieter Riegel
Armin Rigo
Nicholas Riley
Jean-Claude Rimbault
+Vlad Riscutia
Juan M. Bello Rivas
Davide Rizzo
Anthony Roach
diff --git a/Misc/NEWS b/Misc/NEWS
index 25c1f3c..caa12a6 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -27,6 +27,9 @@ Core and Builtins
Library
-------
+- Issue #4376: ctypes now supports nested structures in a endian different than
+ the parent structure. Patch by Vlad Riscutia.
+
- Raise ValueError when attempting to set the _CHUNK_SIZE attribute of a
TextIOWrapper to a huge value, not TypeError.