This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
>>> import jedi | |
>>> jedi.Script('import numpy; a = numpy.array([0]); a.').completions() | |
[] | |
>>> jedi.Script('import numpy; a = numpy.array([0]); a.').completions() | |
[] | |
>>> jedi.Script('import numpy; a = numpy.array([0]); a.').completions() | |
[] | |
>>> jedi.Script('import numpy; a = numpy.array([0]); a.').completions() | |
[] | |
>>> jedi.Script('import numpy; a = numpy.array([0]); a.').completions() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import os | |
import json | |
import socket | |
import threading | |
activate_this = os.environ.get("SUBLIMEREPL_ACTIVATE_THIS", None) | |
# turn off pager | |
os.environ['TERM'] = 'emacs' | |
if activate_this: |