diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-07-13 22:03:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-07-13 22:03:45 -0700 |
commit | 10866a525737842b090d83ccaf6d7aceb092f069 (patch) | |
tree | 748cc23fa32fe77fd8106e8f068540ab135f29cb /setuptools | |
parent | e685d05a5d50757ccf72dedeeb6fc3108b5ebd84 (diff) | |
parent | 053a3a12cf0cc902e0f869b8cc4cff997f73fc84 (diff) | |
download | external_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-x | setuptools/package_index.py | 1 | ||||
-rw-r--r-- | setuptools/unicode_utils.py | 1 |
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): |