Merge pull request #2231 from chrissimpkins/py23-dep-warn

[py23] Nit: change py23 deprecation warning from "next release" to "future release"
This commit is contained in:
Just van Rossum 2021-03-20 17:30:22 +01:00 committed by GitHub
commit 959937da3c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,7 @@ from io import StringIO as UnicodeIO
from types import SimpleNamespace
warnings.warn(
"The py23 module has been deprecated and will be removed in the next release. "
"The py23 module has been deprecated and will be removed in a future release. "
"Please update your code.",
DeprecationWarning,
)