diff options
author | Serhiy Storchaka <storchaka@gmail.com> | 2020-03-21 13:45:30 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-21 13:45:30 (GMT) |
commit | 684d2b9a071fa8e54749e0eec3c16aafcd642ed4 (patch) | |
tree | 5a2c19888e1310ceb5d39fa03d3637af4705758c | |
parent | 6723e933c4d90a408cf3818362a0e4de6d84c932 (diff) | |
download | cpython-684d2b9a071fa8e54749e0eec3c16aafcd642ed4.zip cpython-684d2b9a071fa8e54749e0eec3c16aafcd642ed4.tar.gz cpython-684d2b9a071fa8e54749e0eec3c16aafcd642ed4.tar.bz2 |
bpo-24916: Remove an outdated comment. (GH-19101)
-rw-r--r-- | Lib/sysconfig.py | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/Lib/sysconfig.py b/Lib/sysconfig.py index 4003726..eaee837 100644 --- a/Lib/sysconfig.py +++ b/Lib/sysconfig.py @@ -84,8 +84,6 @@ _INSTALL_SCHEMES = { _SCHEME_KEYS = ('stdlib', 'platstdlib', 'purelib', 'platlib', 'include', 'scripts', 'data') - # FIXME don't rely on sys.version here, its format is an implementation detail - # of CPython, use sys.version_info or sys.hexversion _PY_VERSION = sys.version.split()[0] _PY_VERSION_SHORT = '%d.%d' % sys.version_info[:2] _PY_VERSION_SHORT_NO_DOT = '%d%d' % sys.version_info[:2] |