Lynn Root
Lynn Root
Hey @gfalcone - sorry for the silence! I'm going to close then reopen this PR to re-trigger the GitHub actions. If this still passes, I'll go ahead and merge, and...
fixed a separate bug that had the build broken, so let's try this re-triggering workflows again 😅
uff, okay - hey @gfalcone could I ask you to rebase this PR off of latest `develop` branch and push? if that's too much, I can close this PR and...
Thank you @iamansoni ! I've assigned it to you - no rush though!
closing & reopening to re-trigger GH actions
hey @profgav (cc @gavinhuttley) - I definitely like this idea. In investigating this idea, it seems like this is will take a bit of work. `interrogate` just uses the `ast`...
@Pradhvan 💯! this issue is yours if you want it! Very much appreciated - thank you!
Hey @Pradhvan, sure! So `interrogate` uses the [`ast`](https://docs.python.org/3/library/ast.html) library in stdlib (in [`src/interrogate/visit.py`](https://github.com/econchick/interrogate/blob/master/src/interrogate/visit.py)). It uses `ast` to traverse a code base, (via `visit_Def` methods), and with each object we care...
Just wanted to let you know that I have a fix, and will be released in the next release (`22.0` - switching to calendar versioning), hopefully by the end of...
Hmm interesting thought. I'm going to have to investigate this a bit; it's weird that `help(ChildClass.overwritten_method)` shows the docstring of the parent class, but `ast.get_docstring` does not. I'll get back...