diff options
author | Eitan Adler <grimreaper@users.noreply.github.com> | 2018-05-20 07:38:01 -0700 |
---|---|---|
committer | Serhiy Storchaka <storchaka@gmail.com> | 2018-05-20 17:38:01 +0300 |
commit | 9572132ab3c2edddb8087a0112116da866373f79 (patch) | |
tree | 5bb5cb9e7e0ebc1472227b857427e2cf7421d722 /Doc/howto | |
parent | 6655354afcd116c27486bb5ba1dfa50b369d8d85 (diff) | |
download | cpython-git-9572132ab3c2edddb8087a0112116da866373f79.tar.gz |
Docs: be less specific about python versions (GH-6985)
CPython 3.5 is old now, and we don't bump this version often,
so lets avoid using specific versions.
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/clinic.rst | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Doc/howto/clinic.rst b/Doc/howto/clinic.rst index 788a0eee2b..695fbb1be1 100644 --- a/Doc/howto/clinic.rst +++ b/Doc/howto/clinic.rst @@ -22,8 +22,8 @@ Argument Clinic How-To compatibility for future versions. In other words: if you maintain an external C extension for CPython, you're welcome to experiment with Argument Clinic in your own code. But the - version of Argument Clinic that ships with CPython 3.5 *could* - be totally incompatible and break all your code. + version of Argument Clinic that ships with the next version + of CPython *could* be totally incompatible and break all your code. The Goals Of Argument Clinic ============================ |