Thanks to visit codestin.com Credit goes to github.com
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 1a6e213 commit 1f23837Copy full SHA for 1f23837
1 file changed
Lib/test/test_descr.py
@@ -1594,7 +1594,11 @@ def f(cls, arg):
1594
1595
cm = classmethod(f)
1596
cm_dict = {'__annotations__': {},
1597
- '__doc__': "f docstring",
+ '__doc__': (
1598
+ "f docstring"
1599
+ if support.HAVE_DOCSTRINGS
1600
+ else None
1601
+ ),
1602
'__module__': __name__,
1603
'__name__': 'f',
1604
'__qualname__': f.__qualname__}
0 commit comments