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
File "/usr/lib/python3/dist-packages/mastodon/Mastodon.py", line 103, in api_min_version_decorator function.__doc__ = function.__doc__ + "\n\n *Added: Mastodon v" + created_ver + ", last changed: Mastodon v" + last_changed_ver + "*" TypeError: unsupported operand type(s) for +: 'NoneType' and 'str'
(line numbers match 1.5.1-1 in Debian bullseye)
This is because python3 -OO strips away docstrings. A test for the presence of __doc__ should probably suffice.
python3 -OO
__doc__
The text was updated successfully, but these errors were encountered:
oof. I'll add that next release. Please tell me it doesn't also strip annotations
Sorry, something went wrong.
-O strips asserts and sets __debug__ to False -OO does that and also strips docstrings https://docs.python.org/3/using/cmdline.html#cmdoption-O
__debug__
No branches or pull requests
(line numbers match 1.5.1-1 in Debian bullseye)
This is because
python3 -OO
strips away docstrings. A test for the presence of__doc__
should probably suffice.The text was updated successfully, but these errors were encountered: