[Python-checkins] cpython (merge 3.4 -> 3.5): merge 3.4

benjamin.peterson python-checkins at python.org
Sun Sep 27 11:14:41 CEST 2015


https://hg.python.org/cpython/rev/ac11bf14618d
changeset:   98322:ac11bf14618d
branch:      3.5
parent:      98317:a48d8e331c38
parent:      98320:0782798733ce
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Sep 27 02:14:23 2015 -0700
summary:
  merge 3.4

files:
  Modules/_hashopenssl.c |  4 ++--
  1 files changed, 2 insertions(+), 2 deletions(-)


diff --git a/Modules/_hashopenssl.c b/Modules/_hashopenssl.c
--- a/Modules/_hashopenssl.c
+++ b/Modules/_hashopenssl.c
@@ -486,8 +486,8 @@
         HMAC_CTX_cleanup(&hctx_tpl);
         return 0;
     }
-    while(tkeylen) {
-        if(tkeylen > mdlen)
+    while (tkeylen) {
+        if (tkeylen > mdlen)
             cplen = mdlen;
         else
             cplen = tkeylen;

-- 
Repository URL: https://hg.python.org/cpython


More information about the Python-checkins mailing list