Jedi completion request enqueued4 exception

Issue #146 closed
Johann Krauter created an issue

itom PythonEngine crashed at line 2503 (pythonEngine.cpp) due to a exception from jedi package.

It crashed when in the following code some attribute of d is addressed by typing “d.” at the comment in line 10. This behaviour is only observed by using the numpy function genfromtxt.

import numpy as np


def func2():
    a = np.genfromtxt("")
    return a


def func1():

    d = func2()
    # add here d. for exception

    return d

Comments (2)

  1. Log in to comment