Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0d85539

Browse files
committed
Merged revisions 66076 via svnmerge from
svn+ssh://[email protected]/python/trunk ........ r66076 | georg.brandl | 2008-08-30 21:03:43 +0200 (Sat, 30 Aug 2008) | 2 lines #3707: fix inf. recursion in pydoc topic search. Rev'd by Antoine. ........
1 parent 069094b commit 0d85539

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

Lib/pydoc.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1548,10 +1548,10 @@ class Helper:
15481548
'del': ('del', 'BASICMETHODS'),
15491549
'elif': 'if',
15501550
'else': ('else', 'while for'),
1551-
'except': 'except',
1552-
'finally': 'finally',
1551+
'except': 'try',
1552+
'finally': 'try',
15531553
'for': ('for', 'break continue while'),
1554-
'from': 'from',
1554+
'from': 'import',
15551555
'global': ('global', 'NAMESPACES'),
15561556
'if': ('if', 'TRUTHVALUE'),
15571557
'import': ('import', 'MODULES'),

0 commit comments

Comments
 (0)