diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 15:52:50 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-10-14 15:52:50 -0400 |
commit | 6b175fcf513fa98f03b4c529cccfa3d256e91e19 (patch) | |
tree | 697c71221bc758a111da39f7cc7bfda04cd5da2b | |
parent | e704747721609fcb25267041292c14493751b61c (diff) | |
download | external_python_setuptools-6b175fcf513fa98f03b4c529cccfa3d256e91e19.tar.gz external_python_setuptools-6b175fcf513fa98f03b4c529cccfa3d256e91e19.tar.bz2 external_python_setuptools-6b175fcf513fa98f03b4c529cccfa3d256e91e19.zip |
Add note about editing the code
-rw-r--r-- | setuptools/command/py36compat.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/setuptools/command/py36compat.py b/setuptools/command/py36compat.py index def5906a..61063e75 100644 --- a/setuptools/command/py36compat.py +++ b/setuptools/command/py36compat.py @@ -10,6 +10,9 @@ class sdist_add_defaults: """ Mix-in providing forward-compatibility for functionality as found in distutils on Python 3.7. + + Do not edit the code in this class except to update functionality + as implemented in distutils. Instead, override in the subclass. """ def add_defaults(self): |