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
rtype
Example: https://jsonyx.readthedocs.io/en/latest/api/jsonyx.dump.html
def dump(...) -> None: r"""Serialize a Python object to an open JSON file. :raises TypeError: for unserializable values :raises ValueError: for invalid values >>> import jsonyx as json >>> json.dump(["foo", {"bar": ("baz", None, 1.0, 2)}]) ["foo", {"bar": ["baz", null, 1.0, 2]}] >>> from io import StringIO >>> io = StringIO() >>> json.dump(["streaming API"], io) >>> io.getvalue() '["streaming API"]\n' """
The text was updated successfully, but these errors were encountered:
Fix placement of return type when there is a doctest
bfc1bf9
Resolves tox-dev#480
Buggy docutils strikes again.
Sorry, something went wrong.
8a90d57
Successfully merging a pull request may close this issue.
Example: https://jsonyx.readthedocs.io/en/latest/api/jsonyx.dump.html
The text was updated successfully, but these errors were encountered: