When I use emacs with elpy, just about every time I start writing code for function by typing:
foo_func(
I automatically get on the bottom window:
:container.foo_func(x, y, z=None)
But when I attempt on built-in type like enumerate or sort
enumerate(
list.sort(
I do not get that nice argument list in elpy. If not, then are there ways to get that even via writing a call like:
>dir(enumerate)
>inspect.signature(enumerate)
Appreciate any pointers in advance