diff options
author | Mehdi Abaakouk <sileht@sileht.net> | 2016-08-02 13:31:38 +0200 |
---|---|---|
committer | Mehdi Abaakouk <sileht@sileht.net> | 2016-08-02 13:35:59 +0200 |
commit | b822e86d4b41cd54c12e6d5fdf3f7d00e89bb4d4 (patch) | |
tree | ad3479b5c5d0cb676dfb02debad990d4a3e728c3 /setuptools/command/easy_install.py | |
parent | f9b2902f312834ca6676f0b79bedf845c2bc42c3 (diff) | |
download | external_python_setuptools-b822e86d4b41cd54c12e6d5fdf3f7d00e89bb4d4.tar.gz external_python_setuptools-b822e86d4b41cd54c12e6d5fdf3f7d00e89bb4d4.tar.bz2 external_python_setuptools-b822e86d4b41cd54c12e6d5fdf3f7d00e89bb4d4.zip |
Revert "Ensure that tmpdir is unicode. Fixes #704."
This reverts commit 857949575022946cc60c7cd1d0d088246d3f7540.
As we can see on https://github.com/pypa/setuptools/issues/709,
this breaks many things (easy_install C extensions, all py3.5 tests,
run with LANG=C).
So instead of fixing in a hurry all new bugs due to this, I propose to
revert this commit until all downsides of this change have been
investigated.
Related bug: https://github.com/pypa/setuptools/issues/709
Related bug: https://github.com/pypa/setuptools/issues/710
Related bug: https://github.com/pypa/setuptools/issues/712
Diffstat (limited to 'setuptools/command/easy_install.py')
-rwxr-xr-x | setuptools/command/easy_install.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/setuptools/command/easy_install.py b/setuptools/command/easy_install.py index 4783ce48..ae9079d8 100755 --- a/setuptools/command/easy_install.py +++ b/setuptools/command/easy_install.py @@ -627,7 +627,7 @@ class easy_install(Command): ) def easy_install(self, spec, deps=False): - tmpdir = tempfile.mkdtemp(prefix=six.u("easy_install-")) + tmpdir = tempfile.mkdtemp(prefix="easy_install-") if not self.editable: self.install_site_py() |