summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorBenjamin Peterson <benjamin@python.org>2014-05-17 21:59:12 (GMT)
committerBenjamin Peterson <benjamin@python.org>2014-05-17 21:59:12 (GMT)
commit5eb6b392109d6407269cbb49f6b297eb2a19567c (patch)
tree311ab51158f52a3e69b5249b1ffd3145ecc25cb8 /Misc
parent5d52022406d21818603c945e65a9ac8154a6bbab (diff)
downloadcpython-5eb6b392109d6407269cbb49f6b297eb2a19567c.zip
cpython-5eb6b392109d6407269cbb49f6b297eb2a19567c.tar.gz
cpython-5eb6b392109d6407269cbb49f6b297eb2a19567c.tar.bz2
support pep 3118 format strings for ctypes objects with nontrivial shapes (closes #10744)
Patch by Matti Picus.
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 e2836a1..9e2de7a 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -23,6 +23,9 @@ Core and Builtins
Library
-------
+- Issue #10744: Fix PEP 3118 format strings on ctypes objects with a nontrivial
+ shape.
+
- Issue #20998: Fixed re.fullmatch() of repeated single character pattern
with ignore case. Original patch by Matthew Barnett.