summaryrefslogtreecommitdiffstats
path: root/Misc
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2017-09-27 04:37:37 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-09-27 04:37:37 (GMT)
commitbdb215b18a42360b6a9c82876fa71f19ca1a416d (patch)
tree6959fda40daef25cb1b0792b0b08671506f0450c /Misc
parentf0db2dfda777ad3380e7816cabe4c4240f31687f (diff)
downloadcpython-bdb215b18a42360b6a9c82876fa71f19ca1a416d.zip
cpython-bdb215b18a42360b6a9c82876fa71f19ca1a416d.tar.gz
cpython-bdb215b18a42360b6a9c82876fa71f19ca1a416d.tar.bz2
[3.6] bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ attr is defined only outside _fields_. (GH-3615) (#3774)
(cherry picked from commit 30b61b51e05d2d43e8e2e783b0a9df738535423b)
Diffstat (limited to 'Misc')
-rw-r--r--Misc/NEWS.d/next/Core and Builtins/2017-09-16-13-32-35.bpo-31490.r7m2sj.rst3
1 files changed, 3 insertions, 0 deletions
diff --git a/Misc/NEWS.d/next/Core and Builtins/2017-09-16-13-32-35.bpo-31490.r7m2sj.rst b/Misc/NEWS.d/next/Core and Builtins/2017-09-16-13-32-35.bpo-31490.r7m2sj.rst
new file mode 100644
index 0000000..d95e825
--- /dev/null
+++ b/Misc/NEWS.d/next/Core and Builtins/2017-09-16-13-32-35.bpo-31490.r7m2sj.rst
@@ -0,0 +1,3 @@
+Fix an assertion failure in `ctypes` class definition, in case the class has
+an attribute whose name is specified in ``_anonymous_`` but not in
+``_fields_``. Patch by Oren Milman.