Skip to content

Commit ba16ba3

Browse files
authored
gh-133210: Fix test_descr in --without-doc-strings mode (#133294)
1 parent 641253c commit ba16ba3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Lib/test/test_descr.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1589,7 +1589,7 @@ def f(cls, arg):
15891589
cm = classmethod(f)
15901590
cm_dict = {'__doc__': (
15911591
"f docstring"
1592-
if support.HAVE_DOCSTRINGS
1592+
if support.HAVE_PY_DOCSTRINGS
15931593
else None
15941594
),
15951595
'__module__': __name__,

0 commit comments

Comments
 (0)