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
The deprecation docs use concrete version numbers, as in this example:
@deprecated(Version("Twisted", 8, 0, 0)) def badAPI(self, first, second): ''' Docstring for badAPI. ''' ...
They should use indeterminate versions instead, since that's what authors should actually write:
@deprecated(Version("Twisted", "NEXT", 0, 0)) def badAPI(self, first, second): ''' Docstring for badAPI. ''' ...
The text was updated successfully, but these errors were encountered:
Use NEXT in deprecation examples
ed07000
Closes #11715.
7d4f8f5
#11715: Use NEXT in deprecation examples (#11720)
50761f4
twm
Successfully merging a pull request may close this issue.
The deprecation docs use concrete version numbers, as in this example:
They should use indeterminate versions instead, since that's what authors should actually write:
The text was updated successfully, but these errors were encountered: