Kaydet (Commit) 5c669db1 authored tarafından Georg Brandl's avatar Georg Brandl

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

üst 5f2dc0bf
...@@ -1552,11 +1552,11 @@ class Helper: ...@@ -1552,11 +1552,11 @@ class Helper:
'del': ('del', 'BASICMETHODS'), 'del': ('del', 'BASICMETHODS'),
'elif': 'if', 'elif': 'if',
'else': ('else', 'while for'), 'else': ('else', 'while for'),
'except': 'except', 'except': 'try',
'exec': ('exec', ''), 'exec': ('exec', ''),
'finally': 'finally', 'finally': 'try',
'for': ('for', 'break continue while'), 'for': ('for', 'break continue while'),
'from': 'from', 'from': 'import',
'global': ('global', 'NAMESPACES'), 'global': ('global', 'NAMESPACES'),
'if': ('if', 'TRUTHVALUE'), 'if': ('if', 'TRUTHVALUE'),
'import': ('import', 'MODULES'), '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