[Python-checkins] python/dist/src/Lib pydoc.py,1.71,1.72
tim_one@users.sourceforge.net
tim_one@users.sourceforge.net
2002年10月29日 21:21:02 -0800
Update of /cvsroot/python/python/dist/src/Lib
In directory usw-pr-cvs1:/tmp/cvs-serv11356/Lib
Modified Files:
pydoc.py
Log Message:
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.
Index: pydoc.py
===================================================================
RCS file: /cvsroot/python/python/dist/src/Lib/pydoc.py,v
retrieving revision 1.71
retrieving revision 1.72
diff -C2 -d -r1.71 -r1.72
*** pydoc.py 21 Oct 2002 04:44:11 -0000 1.71
--- pydoc.py 30 Oct 2002 05:21:00 -0000 1.72
***************
*** 1407,1410 ****
--- 1407,1411 ----
'try': ('ref/try', 'EXCEPTIONS'),
'while': ('ref/while', 'break continue if TRUTHVALUE'),
+ 'yield': ('ref/yield', ''),
}