[pypy-commit] pypy stdlib-2.7.9: Actually return the list we have built.

amauryfa noreply at buildbot.pypy.org
Thu Feb 12 19:03:31 CET 2015


Author: Amaury Forgeot d'Arc <amauryfa at 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)


More information about the pypy-commit mailing list