Message163976
| Author |
skrah |
| Recipients |
brian.curtin, jeremy.kloth, jkloth, loewis, pitrou, skrah, zach.ware |
| Date |
2012年06月25日.14:56:01 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1340636162.64.0.95838002998.issue15172@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
It worked out of the box for me. These are the versions I use:
# openssl version:
svn export http://svn.python.org/projects/external/openssl-1.0.1c
# nasm version (installer):
nasm-2.10.01-installer.exe
Let me see what I did:
cd openssl-1.0.1c
nmake -f ms\nt.mak clean
nmake -f ms\nt64.mak clean
cd ..\cpython
Tools\buildbot\clean.bat
Tools\buildbot\clean-amd64.bat
Tools\buildbot\build-amd64.bat
cd PCbuild\amd64
python_d.exe -m test -uall test_hmac
[1/1] test_hmac
1 test OK.
[111184 refs]
python_d.exe -m test -uall test_ssl
[...]
File "C:\Users\stefan\pydev\cpython\lib\ssl.py", line 513, in do_handshake
self._sslobj.do_handshake()
ConnectionResetError: [Error 10054] An existing connection was forcibly closed by the remote host
Now I get this error but it seems quite unrelated. |
|