summaryrefslogtreecommitdiff
path: root/setuptools/tests/py26compat.py
diff options
context:
space:
mode:
authorstepshal <nessento@openmailbox.org>2016-07-21 09:37:34 +0700
committerstepshal <nessento@openmailbox.org>2016-07-21 09:37:34 +0700
commit39bf3155d47c0024240be414a611dcb6d549f53c (patch)
tree373f653d4aec874e2aa3b2a9bc7c77f8526ceb89 /setuptools/tests/py26compat.py
parent966e2fa4118277ed4551aa2215ac6ebac34b37e5 (diff)
downloadpython-setuptools-git-39bf3155d47c0024240be414a611dcb6d549f53c.tar.gz
Add missing blank lines after class or function definition.
Diffstat (limited to 'setuptools/tests/py26compat.py')
-rw-r--r--setuptools/tests/py26compat.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/setuptools/tests/py26compat.py b/setuptools/tests/py26compat.py
index 5325dad6..18cece05 100644
--- a/setuptools/tests/py26compat.py
+++ b/setuptools/tests/py26compat.py
@@ -9,6 +9,7 @@ def _tarfile_open_ex(*args, **kwargs):
"""
return contextlib.closing(tarfile.open(*args, **kwargs))
+
if sys.version_info[:2] < (2, 7) or (3, 0) <= sys.version_info[:2] < (3, 2):
tarfile_open = _tarfile_open_ex
else: