diff options
author | Tim Peters <tim.peters@gmail.com> | 2002-10-30 05:21:00 (GMT) |
---|---|---|
committer | Tim Peters <tim.peters@gmail.com> | 2002-10-30 05:21:00 (GMT) |
commit | fb05c4e5bb0660bada3cf90bb84cbb4b1ff782c8 (patch) | |
tree | 1fd7f0126ae789598734c0b8296e9dbb1c6f53b5 /Lib | |
parent | edc853e2f49e140dd182d688bf57765caa2f6118 (diff) | |
download | cpython-fb05c4e5bb0660bada3cf90bb84cbb4b1ff782c8.zip cpython-fb05c4e5bb0660bada3cf90bb84cbb4b1ff782c8.tar.gz cpython-fb05c4e5bb0660bada3cf90bb84cbb4b1ff782c8.tar.bz2 |
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.
Diffstat (limited to 'Lib')
-rwxr-xr-x | Lib/pydoc.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Lib/pydoc.py b/Lib/pydoc.py index e83e895..9e8351e 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 = { |