Author: Amaury Forgeot d'Arc <amaur...@gmail.com>
Branch: stdlib-2.7.9
Changeset: r75836:62ee769c7ff5
Date: 2015-02-12 19:03 +0100
http://bitbucket.org/pypy/pypy/changeset/62ee769c7ff5/

Log:    Actually return the list we have built.

diff --git a/pypy/module/_ssl/interp_win32.py b/pypy/module/_ssl/interp_win32.py
--- a/pypy/module/_ssl/interp_win32.py
+++ b/pypy/module/_ssl/interp_win32.py
@@ -176,3 +176,5 @@
         if not CertCloseStore(hStore, 0):
             # This error case might shadow another exception.
             raise wrap_windowserror(space, rwin32.lastSavedWindowsError())
+
+    return space.newlist(result_w)
_______________________________________________
pypy-commit mailing list
pypy-commit@python.org
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to