-
What I'm doing wrong?
```
In [1]: import jedi
In [2]: a = """import numpy; numpy.multiarray("""
In [3]: script = jedi.Script(a, 1, len(a), '')
In [4]: script.call_signatures()[0].params
-------------…
-
``` python
a = """a
for a in range(10):
print a"""
import jedi
script = jedi.Script(a, 1, 1, '')
script.completions()
```
Got:
```
----------------------------------------------------------------…
-
While testing jedi on a cpython clone I noticed that I only get results from my system python installation, and not from the clone I was working on.
The file tried was cpython/Lib/distutils/dir_util…
-
I was trying to build a theme from scratch following the docs. But after copying the orphan theme to the themes folder of the site and calling _nikola build_ it breaks with:
```
Traceback (most recen…