You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Originally reported byMarius Gedminas (Bitbucket: mgedmin, GitHub: mgedmin)
Today if you do 'pydoc coverage', you get a bunch of opaque descriptions that look like this:
analysis = wrapper(*args, **kwargs)
Singleton wrapper around a coverage method.
With my patch you see
analysis = wrapper(*args, **kwargs)
analysis(morf)
Like `analysis2` but doesn't return excluded line numbers.
This function operates on a singleton coverage object created on first use.
Originally reported by Marius Gedminas (Bitbucket: mgedmin, GitHub: mgedmin)
Today if you do 'pydoc coverage', you get a bunch of opaque descriptions that look like this:
With my patch you see
The text was updated successfully, but these errors were encountered: