mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
gh-121277: Raise nice error on next
as second argument to deprecated-removed (GH-124623)
This commit is contained in:
parent
6716dd1c33
commit
e349f73a5a
1 changed files with 3 additions and 0 deletions
|
@ -288,6 +288,9 @@ class DeprecatedRemoved(VersionChange):
|
|||
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…
Add table
Add a link
Reference in a new issue