diff options
author | TilmanK <tilman.krummeck@googlemail.com> | 2018-10-25 00:50:25 +0200 |
---|---|---|
committer | Victor Stinner <vstinner@redhat.com> | 2018-10-25 00:50:25 +0200 |
commit | e80e77a484983ffb527ef22d336ff9500589dce3 (patch) | |
tree | 52d49f1e6d5d31c82e9dd328d327877f3052f698 /Doc/distutils | |
parent | turtledemo/penrose.py: remove unused clock() calls (GH-10033) (diff) | |
download | cpython-e80e77a484983ffb527ef22d336ff9500589dce3.tar.gz cpython-e80e77a484983ffb527ef22d336ff9500589dce3.tar.bz2 cpython-e80e77a484983ffb527ef22d336ff9500589dce3.zip |
bpo-35027, distutils doc: Correct note on setup.py change in Python 3.7 (GH-10032)
Diffstat (limited to 'Doc/distutils')
-rw-r--r-- | Doc/distutils/setupscript.rst | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/Doc/distutils/setupscript.rst b/Doc/distutils/setupscript.rst index 1d96acbe98f..c1051d2e807 100644 --- a/Doc/distutils/setupscript.rst +++ b/Doc/distutils/setupscript.rst @@ -682,9 +682,8 @@ information is sometimes used to indicate sub-releases. These are ) .. versionchanged:: 3.7 - :class:`~distutils.core.setup` now raises a :exc:`TypeError` if - ``classifiers``, ``keywords`` and ``platforms`` fields are not specified - as a list. + :class:`~distutils.core.setup` now warns when ``classifiers``, ``keywords`` + or ``platforms`` fields are not specified as a list or a string. .. _debug-setup-script: |