summaryrefslogtreecommitdiffstats
path: root/Lib/packaging/compat.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/packaging/compat.py')
-rw-r--r--Lib/packaging/compat.py8
1 files changed, 1 insertions, 7 deletions
diff --git a/Lib/packaging/compat.py b/Lib/packaging/compat.py
index a82efd3..dcb58f5 100644
--- a/Lib/packaging/compat.py
+++ b/Lib/packaging/compat.py
@@ -1,8 +1,4 @@
-"""Compatibility helpers.
-
-This module provides classes, variables and imports which are used to
-support packaging across Python 2.x and 3.x.
-"""
+"""Compatibility helpers."""
from packaging import logger
@@ -10,8 +6,6 @@ from packaging import logger
# XXX Having two classes with the same name is not a good thing.
# XXX 2to3-related code should move from util to this module
-# TODO Move common code here: PY3 (bool indicating if we're on 3.x), any, etc.
-
try:
from packaging.util import Mixin2to3 as _Mixin2to3
_CONVERT = True