bpo-24916: Remove an outdated comment. (GH-19101)

This commit is contained in:
Serhiy Storchaka 2020-03-21 15:45:30 +02:00 committed by GitHub
parent 6723e933c4
commit 684d2b9a07
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 0 additions and 2 deletions

View File

@ -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]