Commit 5c669db1 authored by Georg Brandl's avatar Georg Brandl

#3707: fix inf. recursion in pydoc topic search. Rev'd by Antoine.

parent 5f2dc0bf
......@@ -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'),
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment