summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNikita Sobolev <mail@sobolevn.me>2024-02-10 21:51:05 (GMT)
committerGitHub <noreply@github.com>2024-02-10 21:51:05 (GMT)
commitb70a68fbd6b72a25b5ef430603e39c9e40f40d29 (patch)
treefd3499974844409ab25901f44b04c7c8926d5002
parent3a5b38e3b465e00f133ff8074a2d4afb1392dfb5 (diff)
downloadcpython-b70a68fbd6b72a25b5ef430603e39c9e40f40d29.zip
cpython-b70a68fbd6b72a25b5ef430603e39c9e40f40d29.tar.gz
cpython-b70a68fbd6b72a25b5ef430603e39c9e40f40d29.tar.bz2
gh-115254: Fix `test_property` with `-00` mode (#115255)
-rw-r--r--Lib/test/test_property.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/test/test_property.py b/Lib/test/test_property.py
index c12c908..8ace9fd 100644
--- a/Lib/test/test_property.py
+++ b/Lib/test/test_property.py
@@ -224,6 +224,7 @@ class PropertySubSlots(property):
class PropertySubclassTests(unittest.TestCase):
+ @support.requires_docstrings
def test_slots_docstring_copy_exception(self):
# A special case error that we preserve despite the GH-98963 behavior
# that would otherwise silently ignore this error.