Code Monkey home page Code Monkey logo

Comments (1)

tangkong avatar tangkong commented on August 29, 2024 1

From my brief investigations, hutch-python sets a couple of attributes on the ipython Completer, and aside from that doesn't interact with it much.

def configure_tab_completion(ipy_config):
"""
Disable Jedi and tweak IPython tab completion.
Parameters
----------
ipy_config : traitlets.config.Config
IPython configuration.
"""
# Old API for disabling Jedi. Keep in just in case API changes back.
ipy_config.InteractiveShellApp.Completer.use_jedi = False
# New API for disabling Jedi (two access points documented, use both)
ipy_config.Completer.use_jedi = False
ipy_config.IPCompleter.use_jedi = False
try:
# Monkeypatch IPython completion - we need it to respect __dir__
# when Jedi is disabled.
# Details: https://github.com/pcdshub/pcdsdevices/issues/709
# First, access it to see that the internals have not changed:
IPython.core.completer.dir2
except AttributeError:
logger.debug('Looks like the IPython API changed!')
else:
# Then monkeypatch it in:
IPython.core.completer.dir2 = dir

The test suite dove deeper into the internals (?), hitting upon an attribute that got deprecated. The line_buffer attribute is not guaranteed to exist (gh), so calling the attr_matches (gh) independently can lead to the attribute error as observed.

I'm not sure what ipython wants the public API to be here, it's not been annotated very clearly from the code itself.

from hutch-python.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.