Open gittar opened 7 years ago
Details about your environment
What did you do? Please include the actual source code causing the issue.
def plot1(ax, X=None, C=None): pass def plot2(ax, X=None, C=None): pass
What did you expect to happen? How did you expect the Outline to look? plot1 and plot2 appear in outline list.
plot1
plot2
What actually happened? How did the Outline actually look? Only plot1 appeared in outline list. Likely reason: The line break after X=None,
X=None,
(the real example contains so many formal params that they do not fit in one line)
Yes, that is the reason. Unfortunately based on the way functions are detected, this problem is not that easy to solve.
Details about your environment
What did you do? Please include the actual source code causing the issue.
What did you expect to happen? How did you expect the Outline to look?
plot1
andplot2
appear in outline list.What actually happened? How did the Outline actually look? Only
plot1
appeared in outline list. Likely reason: The line break afterX=None,
(the real example contains so many formal params that they do not fit in one line)