From 094afafea5ec368e060a3ab0d4048f70d174209e Mon Sep 17 00:00:00 2001 From: Neal Norwitz Date: Thu, 7 Nov 2002 00:28:54 +0000 Subject: [PATCH] Backport 1.72: SF bug 630824: pydoc Helper keywords missing 'yield' Wow, what a brittle subsystem! Fixed, maybe, provided Fred doesn't shuffle the docs around. --- Lib/pydoc.py | 1 + 1 file changed, 1 insertion(+) diff --git a/Lib/pydoc.py b/Lib/pydoc.py index d377e401cc4e..32c0a2814725 100755 --- a/Lib/pydoc.py +++ b/Lib/pydoc.py @@ -1404,6 +1404,7 @@ class Helper: 'return': ('ref/return', 'FUNCTIONS'), 'try': ('ref/try', 'EXCEPTIONS'), 'while': ('ref/while', 'break continue if TRUTHVALUE'), + 'yield': ('ref/yield', ''), } topics = { -- 2.47.3