From fb05c4e5bb0660bada3cf90bb84cbb4b1ff782c8 Mon Sep 17 00:00:00 2001 From: Tim Peters Date: Wed, 30 Oct 2002 05:21:00 +0000 Subject: 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. --- Lib/pydoc.py | 1 + 1 file changed, 1 insertion(+) (limited to 'Lib/pydoc.py') diff --git a/Lib/pydoc.py b/Lib/pydoc.py index e83e8951877..9e8351e04be 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 = { -- cgit v1.2.3