8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
test_descr
-OO
1 parent 7f2a19e commit 13f6c40Copy full SHA for 13f6c40
Lib/test/test_descr.py
@@ -1587,7 +1587,11 @@ def f(cls, arg):
1587
1588
cm = classmethod(f)
1589
cm_dict = {'__annotations__': {},
1590
- '__doc__': "f docstring",
+ '__doc__': (
1591
+ "f docstring"
1592
+ if support.HAVE_DOCSTRINGS
1593
+ else None
1594
+ ),
1595
'__module__': __name__,
1596
'__name__': 'f',
1597
'__qualname__': f.__qualname__}
0 commit comments