We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
None
parse
As of docstring_parser==0.16, parse is actually safe to being input None as the text.
docstring_parser==0.16
text
Can we type hint it to allow this? That way, parse can be invoked on functions that don't have a __doc__ attribute:
__doc__
from docstring_parser import parse def foo(): pass parse(foo.__doc__) # This is runtime safe, just needs to be type safe
The text was updated successfully, but these errors were encountered:
No branches or pull requests
As of
docstring_parser==0.16
,parse
is actually safe to being inputNone
as thetext
.Can we type hint it to allow this? That way,
parse
can be invoked on functions that don't have a__doc__
attribute:The text was updated successfully, but these errors were encountered: