On the page https://docs.python.org/3.13/library/email.utils.html there is a comment for the parameter `strict` at functions `parseaddr()` and `getaddresses()`. It says _Changed in version 3.13: Add strict optional parameter and reject malformed inputs by default_ When I switch the Python version using the top pull down selector to 3.12, the selector shows 3.12.10, but the comment says _Changed in version 3.12.6: Add strict optional parameter and reject malformed inputs by default._ When I switch to 3.11, the selector shows 3.11.13 and the comment says _Changed in version 3.11.10: Add strict optional parameter and reject malformed inputs by default._ This repeats down to version 3.8: _Changed in version 3.8.20: Add strict optional parameter and reject malformed inputs by default._ **Expected behavior:** I'd prefer the message saying _Added in version 3.8: The strict optional parameter and reject malformed inputs by default._ constantly in all Python versions above it.