summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorVictor Stinner <victor.stinner@haypocalc.com>2011-07-13 19:45:16 (GMT)
committerVictor Stinner <victor.stinner@haypocalc.com>2011-07-13 19:45:16 (GMT)
commitd93da2b952959c26d3afb0a66bff08ed0f14ffb9 (patch)
tree547659232e9a4f823e9e08a9c474982db081aeca /Misc
parent90ce72dd0684e55234b969f405826af7d810e5b0 (diff)
parent6636121950a08de9d437cc2d76ac272cdceb7ecc (diff)
downloadcpython-d93da2b952959c26d3afb0a66bff08ed0f14ffb9.zip
cpython-d93da2b952959c26d3afb0a66bff08ed0f14ffb9.tar.gz
cpython-d93da2b952959c26d3afb0a66bff08ed0f14ffb9.tar.bz2
(merge 3.2) 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 5ad6ead..10bdaf6 100644
--- a/Misc/ACKS
+++ b/Misc/ACKS
@@ -784,6 +784,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 60d43f1..be49249 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -225,6 +225,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.