[Python-checkins] r84406 - python/branches/py3k/Modules/_ssl.c

antoine.pitrou python-checkins at python.org
Wed Sep 1 22:55:42 CEST 2010


Author: antoine.pitrou
Date: Wed Sep  1 22:55:41 2010
New Revision: 84406

Log:
Try to fix some buildbot failures on test_ssl



Modified:
   python/branches/py3k/Modules/_ssl.c

Modified: python/branches/py3k/Modules/_ssl.c
==============================================================================
--- python/branches/py3k/Modules/_ssl.c	(original)
+++ python/branches/py3k/Modules/_ssl.c	Wed Sep  1 22:55:41 2010
@@ -1581,6 +1581,7 @@
     int r;
 
     errno = 0;
+    ERR_clear_error();
     if (!PyArg_ParseTupleAndKeywords(args, kwds,
         "O|O:load_cert_chain", kwlist,
         &certfile, &keyfile))


More information about the Python-checkins mailing list