Remove a use of callable() to silence the warning triggered under -3.
diff --git a/Lib/rlcompleter.py b/Lib/rlcompleter.py
index 3784cdb..53de296 100644
--- a/Lib/rlcompleter.py
+++ b/Lib/rlcompleter.py
@@ -93,7 +93,7 @@
             return None
 
     def _callable_postfix(self, val, word):
-        if callable(val):
+        if hasattr(val, '__call__'):
             word = word + "("
         return word