--- a/DebugClients/Python/FlexCompleter.py Mon Sep 19 22:47:52 2016 +0200 +++ b/DebugClients/Python/FlexCompleter.py Sat Sep 24 22:52:13 2016 +0200 @@ -48,7 +48,11 @@ </ul> """ -import builtins +try: + import __builtin__ as builtins +except ImportError: + import builtins + import __main__ __all__ = ["Completer"]