Commit 0d855393 authored by Georg Brandl's avatar Georg Brandl

Merged revisions 66076 via svnmerge from

svn+ssh://pythondev@svn.python.org/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.
........
parent 069094bc
...@@ -1548,10 +1548,10 @@ class Helper: ...@@ -1548,10 +1548,10 @@ class Helper:
'del': ('del', 'BASICMETHODS'), 'del': ('del', 'BASICMETHODS'),
'elif': 'if', 'elif': 'if',
'else': ('else', 'while for'), 'else': ('else', 'while for'),
'except': 'except', 'except': 'try',
'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