summaryrefslogtreecommitdiff
path: root/pkg_resources/_vendor/packaging/utils.py
diff options
context:
space:
mode:
Diffstat (limited to 'pkg_resources/_vendor/packaging/utils.py')
-rw-r--r--pkg_resources/_vendor/packaging/utils.py14
1 files changed, 0 insertions, 14 deletions
diff --git a/pkg_resources/_vendor/packaging/utils.py b/pkg_resources/_vendor/packaging/utils.py
deleted file mode 100644
index 942387ce..00000000
--- a/pkg_resources/_vendor/packaging/utils.py
+++ /dev/null
@@ -1,14 +0,0 @@
-# This file is dual licensed under the terms of the Apache License, Version
-# 2.0, and the BSD License. See the LICENSE file in the root of this repository
-# for complete details.
-from __future__ import absolute_import, division, print_function
-
-import re
-
-
-_canonicalize_regex = re.compile(r"[-_.]+")
-
-
-def canonicalize_name(name):
- # This is taken from PEP 503.
- return _canonicalize_regex.sub("-", name).lower()