summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAlex Grönholm <alex.gronholm@nextday.fi>2020-01-26 18:35:02 +0200
committerAlex Grönholm <alex.gronholm@nextday.fi>2020-01-26 18:35:02 +0200
commit8e6a74b8169ba7ecf3947fdc6fb8b3dd6e97776e (patch)
tree94e6231e37504735e61dc71e94d9005886b5f896 /src
parent7e047358bb7472c8babecd21421a5e6eb237c658 (diff)
downloadwheel-git-8e6a74b8169ba7ecf3947fdc6fb8b3dd6e97776e.tar.gz
Removed obsolete comment
Closes #296.
Diffstat (limited to 'src')
-rw-r--r--src/wheel/metadata.py3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/wheel/metadata.py b/src/wheel/metadata.py
index 914dc75..bbf57a7 100644
--- a/src/wheel/metadata.py
+++ b/src/wheel/metadata.py
@@ -10,8 +10,7 @@ import pkg_resources
from .pkginfo import read_pkg_info
-# Wheel itself is probably the only program that uses non-extras markers
-# in METADATA/PKG-INFO. Support its syntax with the extra at the end only.
+# Support markers syntax with the extra at the end only
EXTRA_RE = re.compile(
r"""^(?P<package>.*?)(;\s*(?P<condition>.*?)(extra == '(?P<extra>.*?)')?)$""")