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
Hi again ...
So I wanted to pitch improving the example/doctest (https://docs.python.org/3/library/doctest.html) support in the library.
Right now the behavior is pretty ... not great.
This ....
def my_function(lst): """ >>> my_function([1, 1, ... 1,2,3,3,4, 5]) "processed [1,1,1,2,3,3,4,5]" """ return "processed " + str(lst)
Becomes ....
def my_function(lst): """ >>> my_function([1, 1,. ... 1,2,3,3,4, 5]) "processed [1,1,1,2,3,3,4,5]" """ return "processed " + str(lst)
I am proposing ...
Examples
Ideal output for reference:
def my_function(lst): """ >>> my_function([1,1,1,2,3,3,4,5]) "processed [1,1,1,2,3,3,4,5]" """ return "processed " + str(lst)
The text was updated successfully, but these errors were encountered:
Sounds wonderful!
Sorry, something went wrong.
I will have this in the back burner until we close #169 I think it would give better tooling to design the formatter
No branches or pull requests
Hi again ...
So I wanted to pitch improving the example/doctest (https://docs.python.org/3/library/doctest.html) support
in the library.
Right now the behavior is pretty ... not great.
This ....
Becomes ....
I am proposing ...
Examples
section (https://numpydoc.readthedocs.io/en/v1.4.0/format.html#examples)Ideal output for reference:
The text was updated successfully, but these errors were encountered: