From: Tim Peters Date: Wed, 30 Oct 2002 05:21:00 +0000 (+0000) Subject: SF bug 630824: pydoc Helper keywords missing 'yield' X-Git-Tag: v2.3c1~3653 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=fb05c4e5bb0660bada3cf90bb84cbb4b1ff782c8;p=thirdparty%2FPython%2Fcpython.git SF bug 630824: pydoc Helper keywords missing 'yield' Wow, what a brittle subsystem! Fixed, maybe, provided Fred doesn't shuffle the docs around. Bugfix candidate. --- diff --git a/Lib/pydoc.py b/Lib/pydoc.py index e83e8951877a..9e8351e04be3 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -1406,6 +1406,7 @@ class Helper: 'return': ('ref/return', 'FUNCTIONS'), 'try': ('ref/try', 'EXCEPTIONS'), 'while': ('ref/while', 'break continue if TRUTHVALUE'), + 'yield': ('ref/yield', ''), } topics = {