##// END OF EJS Templates
Backport PR #5782: Silence exception thrown by completer when dir() does not return a list...
Backport PR #5782: Silence exception thrown by completer when dir() does not return a list ```python In [1]: import SOAPpy In [2]: s = SOAPpy.SOAPProxy('http://abc.com', namespace='xyz') In [3]: s.Traceback (most recent call last): File "IPython/core/completer.py", line 1043, in complete self.matches.extend(matcher(text)) File "IPython/core/completer.py", line 725, in python_matches matches = self.attr_matches(text) File "IPython/core/completer.py", line 403, in attr_matches words = dir2(obj) File "IPython/utils/dir2.py", line 63, in dir2 words = set(dir(obj)) TypeError: __dir__() must return a list, not instance If you suspect this is an IPython bug, please report it at: https://github.com/ipython/ipython/issues or send an email to the mailing list at ipython-dev@scipy.org You can print a more detailed traceback right now with "%tb", or use "%debug" to interactively debug it. Extra-detailed tracebacks for bug-reporting purposes can be enabled via: %config Application.verbose_crash=True File "<ipython-input-3-fbb1f01da851>", line 1 s. ^ SyntaxError: invalid syntax In [4]: dir(s) --------------------------------------------------------------------------- TypeError Traceback (most recent call last) <ipython-input-4-9d6ad02bd404> in <module>() ----> 1 dir(s) TypeError: __dir__() must return a list, not instance In [5]: s.__dir__() Out[5]: <SOAPpy.Client.__Method at 150204780> In [6]: ```
MinRK -
r16678:86364d02
Show More
Name Size Modified Last Commit Author
/ IPython / core
magics
tests
__init__.py Loading ...
alias.py Loading ...
application.py Loading ...
autocall.py Loading ...
builtin_trap.py Loading ...
compilerop.py Loading ...
completer.py Loading ...
completerlib.py Loading ...
crashhandler.py Loading ...
debugger.py Loading ...
display.py Loading ...
display_trap.py Loading ...
displayhook.py Loading ...
displaypub.py Loading ...
error.py Loading ...
events.py Loading ...
excolors.py Loading ...
extensions.py Loading ...
formatters.py Loading ...
getipython.py Loading ...
history.py Loading ...
historyapp.py Loading ...
hooks.py Loading ...
inputsplitter.py Loading ...
inputtransformer.py Loading ...
interactiveshell.py Loading ...
logger.py Loading ...
macro.py Loading ...
magic.py Loading ...
magic_arguments.py Loading ...
oinspect.py Loading ...
page.py Loading ...
payload.py Loading ...
payloadpage.py Loading ...
prefilter.py Loading ...
profileapp.py Loading ...
profiledir.py Loading ...
prompts.py Loading ...
pylabtools.py Loading ...
release.py Loading ...
shadowns.py Loading ...
shellapp.py Loading ...
splitinput.py Loading ...
ultratb.py Loading ...
usage.py Loading ...