Skip to content

Commit 1b0cdbc

Browse files
committed
pythongh-133210: Fix test_descr in --without-doc-strings mode
1 parent df8a02b commit 1b0cdbc

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)