mirror of https://github.com/python/cpython.git
gh-121277: Raise nice error on `next` as second argument to deprecated-removed (GH-124623)
This commit is contained in:
parent
6716dd1c33
commit
e349f73a5a
|
@ -288,6 +288,9 @@ def run(self):
|
|||
version_deprecated = expand_version_arg(self.arguments[0],
|
||||
self.config.release)
|
||||
version_removed = self.arguments.pop(1)
|
||||
if version_removed == 'next':
|
||||
raise ValueError(
|
||||
'deprecated-removed:: second argument cannot be `next`')
|
||||
self.arguments[0] = version_deprecated, version_removed
|
||||
|
||||
# Set the label based on if we have reached the removal version
|
||||
|
|
Loading…
Reference in New Issue