diff options
| -rw-r--r-- | Doc/partparse.py | 2 | ||||
| -rw-r--r-- | Doc/tools/partparse.py | 2 | 
2 files changed, 2 insertions, 2 deletions
| diff --git a/Doc/partparse.py b/Doc/partparse.py index 81d559d75c..ea519b66d8 100644 --- a/Doc/partparse.py +++ b/Doc/partparse.py @@ -1054,7 +1054,7 @@ def do_funcdesc(length, buf, pp, i):      idxsi = hist.indexsubitem	# words      command = ''      cat_class = '' -    if idxsi and idxsi[-1] in ('method', 'protocol'): +    if idxsi and idxsi[-1] in ('method', 'protocol', 'attribute'):  	command = 'defmethod'  	cat_class = string.join(idxsi[:-1])      elif len(idxsi) == 2 and idxsi[1] == 'function': diff --git a/Doc/tools/partparse.py b/Doc/tools/partparse.py index 81d559d75c..ea519b66d8 100644 --- a/Doc/tools/partparse.py +++ b/Doc/tools/partparse.py @@ -1054,7 +1054,7 @@ def do_funcdesc(length, buf, pp, i):      idxsi = hist.indexsubitem	# words      command = ''      cat_class = '' -    if idxsi and idxsi[-1] in ('method', 'protocol'): +    if idxsi and idxsi[-1] in ('method', 'protocol', 'attribute'):  	command = 'defmethod'  	cat_class = string.join(idxsi[:-1])      elif len(idxsi) == 2 and idxsi[1] == 'function': | 
