summaryrefslogtreecommitdiffstats
path: root/Lib/ctypes/test
diff options
context:
space:
mode:
authorOren Milman <orenmn@gmail.com>2017-09-17 10:45:38 (GMT)
committerSerhiy Storchaka <storchaka@gmail.com>2017-09-17 10:45:38 (GMT)
commit30b61b51e05d2d43e8e2e783b0a9df738535423b (patch)
tree22ec0ba4927cde5bf880a95acc33829e446408f1 /Lib/ctypes/test
parenta6bb313c70f8619e6dc4af5cef7d73fa3bbd59ca (diff)
downloadcpython-30b61b51e05d2d43e8e2e783b0a9df738535423b.zip
cpython-30b61b51e05d2d43e8e2e783b0a9df738535423b.tar.gz
cpython-30b61b51e05d2d43e8e2e783b0a9df738535423b.tar.bz2
bpo-31490: Fix an assertion failure in ctypes in case an _anonymous_ attr is defined only outside _fields_. (#3615)
Diffstat (limited to 'Lib/ctypes/test')
-rw-r--r--Lib/ctypes/test/test_anon.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/Lib/ctypes/test/test_anon.py b/Lib/ctypes/test/test_anon.py
index d892b59..d378392 100644
--- a/Lib/ctypes/test/test_anon.py
+++ b/Lib/ctypes/test/test_anon.py
@@ -1,4 +1,5 @@
import unittest
+import test.support
from ctypes import *
class AnonTest(unittest.TestCase):
@@ -35,6 +36,18 @@ class AnonTest(unittest.TestCase):
{"_fields_": [],
"_anonymous_": ["x"]}))
+ @test.support.cpython_only
+ def test_issue31490(self):
+ # There shouldn't be an assertion failure in case the class has an
+ # attribute whose name is specified in _anonymous_ but not in _fields_.
+
+ # AttributeError: 'x' is specified in _anonymous_ but not in _fields_
+ with self.assertRaises(AttributeError):
+ class Name(Structure):
+ _fields_ = []
+ _anonymous_ = ["x"]
+ x = 42
+
def test_nested(self):
class ANON_S(Structure):
_fields_ = [("a", c_int)]