Author: Armin Rigo <[email protected]>
Branch: 
Changeset: r84002:b64c8f09635f
Date: 2016-04-28 10:23 +0200
http://bitbucket.org/pypy/pypy/changeset/b64c8f09635f/

Log:    Add comments

diff --git a/lib-python/2.7/distutils/cmd.py b/lib-python/2.7/distutils/cmd.py
--- a/lib-python/2.7/distutils/cmd.py
+++ b/lib-python/2.7/distutils/cmd.py
@@ -302,6 +302,11 @@
                     setattr(self, dst_option,
                             getattr(src_cmd_obj, src_option))
                 except AttributeError:
+                    # This was added after problems with setuptools 18.4.
+                    # It seems that setuptools 20.9 fixes the problem.
+                    # But e.g. on Ubuntu 14.04 with /usr/bin/virtualenv
+                    # if I say "virtualenv -p pypy venv-pypy" then it
+                    # just installs setuptools 18.4 from some cache...
                     pass
 
 
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to