[issue8876] distutils should not assume that hardlinks will work

2014-10-29 Thread Daniel Farrell
Daniel Farrell added the comment: > An emerging workflow is using Docker for a Python environment. This applies to Vagrant environments as well (VirtualBox shared folders, tests fail). -- nosy: +dfarrell07 ___ Python tracker &l

[issue21069] urllib unit tests failing without ssl module

2014-03-26 Thread Daniel Farrell
Daniel Farrell added the comment: Note that issue21069.patch depends on issue20939_all_3x.patch (if that wasn't clear). [~/cpython]$ hg import issue20939_all_3x.patch applying issue20939_all_3x.patch patching file Lib/test/test_urllib2.py Hunk #1 succeeded at 1447 with fuzz 1 (offset 6

[issue21069] urllib unit tests failing without ssl module

2014-03-26 Thread Daniel Farrell
Daniel Farrell added the comment: Running the unit tests against the latest code (`hg clone ; ./configure; make; make test`) shows the same errors I described earlier. Patching the code with issue20939_all_3x.patch fixes all related errors except one

[issue21069] urllib unit tests failing without ssl module

2014-03-26 Thread Daniel Farrell
Daniel Farrell added the comment: Interestingly, using the configure/make/test options given in the devguide doesn't show these failures, but running on the exact same codebase (`hg checkout v3.4.0`) with the configure/make/test options in the README consistently shows them. That seems.

[issue21069] urllib unit tests failing without ssl module

2014-03-26 Thread Daniel Farrell
Daniel Farrell added the comment: > Ah, in case I wasn't clear: what unittest failures that you are seeing are > not covered by issue 20939? The unit test failures I'm seeing are different in at least two ways: 1) A larger set of tests failing than mentioned in Issue 20939;

[issue21069] urllib unit tests failing without ssl module

2014-03-26 Thread Daniel Farrell
New submission from Daniel Farrell: I'm seeing quite a few unit test failures in urllib ("urlopen error unknown url type: https"). From what I've gathered on IRC, this seems to be because I'm missing the ssl module. I'm seeing these errors in 3.4.0, after a si