https://github.com/python/cpython/commit/7f2a19eb75ff6153b5ceadaa538a45eaa11b3e11 commit: 7f2a19eb75ff6153b5ceadaa538a45eaa11b3e11 branch: 3.11 author: Miss Islington (bot) <[email protected]> committer: sobolevn <[email protected]> date: 2024-02-11T10:58:51+03:00 summary:
[3.11] gh-115254: Fix `test_property` with `-00` mode (GH-115255) (#115262) (cherry picked from commit b70a68fbd6b72a25b5ef430603e39c9e40f40d29) Co-authored-by: Nikita Sobolev <[email protected]> files: M Lib/test/test_property.py diff --git a/Lib/test/test_property.py b/Lib/test/test_property.py index 953431504a7247..c7686a67cf52fb 100644 --- a/Lib/test/test_property.py +++ b/Lib/test/test_property.py @@ -242,6 +242,7 @@ class PropertySubSlots(property): class PropertySubclassTests(unittest.TestCase): + @support.requires_docstrings def test_slots_docstring_copy_exception(self): try: class Foo(object): _______________________________________________ Python-checkins mailing list -- [email protected] To unsubscribe send an email to [email protected] https://mail.python.org/mailman3/lists/python-checkins.python.org/ Member address: [email protected]
