From 73de76c033a13ea51bb92e451d653fda4e43e57c Mon Sep 17 00:00:00 2001 From: Nikita Sobolev Date: Fri, 22 Jul 2022 12:31:51 +0300 Subject: [PATCH] Change `Stub versioning` wording in `CONTRIBUTING.md` (#8365) --- CONTRIBUTING.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 54354cca8..48b9aa89f 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -331,7 +331,7 @@ project's tracker to fix their documentation. You can use checks like `if sys.version_info >= (3, 8):` to denote new functionality introduced in a given Python version or solve type differences. When doing so, only use -one-tuples or two-tuples. Because of this, if a given functionality was +two-tuples. Because of this, if a given functionality was introduced in, say, Python 3.7.4, your check: * should be expressed as `if sys.version_info >= (3, 7):`