[pypy-commit] pypy stdlib-2.7.9: typo

mattip noreply at buildbot.pypy.org
Tue Feb 10 22:32:54 CET 2015


Author: mattip <matti.picus at gmail.com>
Branch: stdlib-2.7.9
Changeset: r75816:cbe8c24dac40
Date: 2015-02-10 20:23 +0200
http://bitbucket.org/pypy/pypy/changeset/cbe8c24dac40/

Log:	typo

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
@@ -159,7 +159,7 @@
                 rffi.charpsize2str(pCrlCtx.c_pbCrlEncoded,
                                    pCrlCtx.c_cbCrlEncoded))
             w_enc = w_certEncodingType(space, pCrlCtx.c_dwCertEncodingType)
-            result_w.append(space.newtuple([w_cert, w_enc]))
+            result_w.append(space.newtuple([w_crl, w_enc]))
     finally:
         if pCrlCtx:
             # loop ended with an error, need to clean up context manually


More information about the pypy-commit mailing list