diff -r 94fc661a54a2 -r 703452a2876f DebugClients/Python/FlexCompleter.py --- a/DebugClients/Python/FlexCompleter.py Sat Sep 28 17:40:42 2013 +0200 +++ b/DebugClients/Python/FlexCompleter.py Sat Sep 28 19:06:25 2013 +0200 @@ -1,7 +1,7 @@ # -*- coding: utf-8 -*- """ -Word completion for the eric5 shell +Word completion for the eric5 shell. <h4>NOTE for eric5 variant</h4> @@ -123,9 +123,9 @@ readline.set_completer(Completer(my_namespace).complete) - @param namespace The namespace for the completer. + @param namespace namespace for the completer + @exception TypeError raised to indicate a wrong namespace structure """ - if namespace and type(namespace) != type({}): raise TypeError('namespace must be a dictionary')