mirror of
https://github.com/python/cpython.git
synced 2025-07-28 13:44:43 +00:00
#3707: fix inf. recursion in pydoc topic search. Rev'd by Antoine.
This commit is contained in:
parent
5f2dc0bf7b
commit
5c669db194
1 changed files with 3 additions and 3 deletions
|
@ -1552,11 +1552,11 @@ class Helper:
|
|||
'del': ('del', 'BASICMETHODS'),
|
||||
'elif': 'if',
|
||||
'else': ('else', 'while for'),
|
||||
'except': 'except',
|
||||
'except': 'try',
|
||||
'exec': ('exec', ''),
|
||||
'finally': 'finally',
|
||||
'finally': 'try',
|
||||
'for': ('for', 'break continue while'),
|
||||
'from': 'from',
|
||||
'from': 'import',
|
||||
'global': ('global', 'NAMESPACES'),
|
||||
'if': ('if', 'TRUTHVALUE'),
|
||||
'import': ('import', 'MODULES'),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue