diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2016-06-06 07:23:42 -0400 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2016-06-06 07:23:42 -0400 |
commit | df3905616933c90af95e99f705b800a2f5c1c921 (patch) | |
tree | f9def47225ce6dd5d88cd51bd7442f3c78aab877 /setuptools/tests/py26compat.py | |
parent | 48b63f309650af9e43368cf0d6792ea247ad8663 (diff) | |
parent | f43c0f0651edfe1f52b0a178cfe2a5234a008af0 (diff) | |
download | external_python_setuptools-df3905616933c90af95e99f705b800a2f5c1c921.tar.gz external_python_setuptools-df3905616933c90af95e99f705b800a2f5c1c921.tar.bz2 external_python_setuptools-df3905616933c90af95e99f705b800a2f5c1c921.zip |
Merge with master
Diffstat (limited to 'setuptools/tests/py26compat.py')
-rw-r--r-- | setuptools/tests/py26compat.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/setuptools/tests/py26compat.py b/setuptools/tests/py26compat.py index c5680881..7211f275 100644 --- a/setuptools/tests/py26compat.py +++ b/setuptools/tests/py26compat.py @@ -3,10 +3,10 @@ import tarfile import contextlib def _tarfile_open_ex(*args, **kwargs): - """ - Extend result as a context manager. - """ - return contextlib.closing(tarfile.open(*args, **kwargs)) + """ + Extend result as a context manager. + """ + 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 |