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
Functions can have docstrings:
>>> def f1(): ... """Docstring.""" ... <function f1 at 0x102460c80>
but pattern matching functions cannot:
>>> def f2: ... """Docstring.""" ... ParsingError: file=<string> lineno=2 colno=21
There should be the possibility to add docstrings to all functions.
Also, multi-line docstrings cannot be specified at the REPL.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Functions can have docstrings:
but pattern matching functions cannot:
There should be the possibility to add docstrings to all functions.
Also, multi-line docstrings cannot be specified at the REPL.
The text was updated successfully, but these errors were encountered: