aboutsummaryrefslogtreecommitdiffstats
path: root/setuptools
diff options
context:
space:
mode:
authorJason R. Coombs <jaraco@jaraco.com>2016-07-13 22:03:45 -0700
committerGitHub <noreply@github.com>2016-07-13 22:03:45 -0700
commit10866a525737842b090d83ccaf6d7aceb092f069 (patch)
tree748cc23fa32fe77fd8106e8f068540ab135f29cb /setuptools
parente685d05a5d50757ccf72dedeeb6fc3108b5ebd84 (diff)
parent053a3a12cf0cc902e0f869b8cc4cff997f73fc84 (diff)
downloadexternal_python_setuptools-10866a525737842b090d83ccaf6d7aceb092f069.tar.gz
external_python_setuptools-10866a525737842b090d83ccaf6d7aceb092f069.tar.bz2
external_python_setuptools-10866a525737842b090d83ccaf6d7aceb092f069.zip
Merge pull request #648 from stepshal/blank_lines
Add missing blank line.
Diffstat (limited to 'setuptools')
-rwxr-xr-xsetuptools/package_index.py1
-rw-r--r--setuptools/unicode_utils.py1
2 files changed, 2 insertions, 0 deletions
diff --git a/setuptools/package_index.py b/setuptools/package_index.py
index f3ee5ec0..cdedef83 100755
--- a/setuptools/package_index.py
+++ b/setuptools/package_index.py
@@ -162,6 +162,7 @@ def interpret_distro_name(
platform = platform
)
+
# From Python 2.7 docs
def unique_everseen(iterable, key=None):
"List unique elements, preserving order. Remember all elements ever seen."
diff --git a/setuptools/unicode_utils.py b/setuptools/unicode_utils.py
index ffab3e24..7c63efd2 100644
--- a/setuptools/unicode_utils.py
+++ b/setuptools/unicode_utils.py
@@ -3,6 +3,7 @@ import sys
from setuptools.extern import six
+
# HFS Plus uses decomposed UTF-8
def decompose(path):
if isinstance(path, six.text_type):