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

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


https://hg.python.org/cpython/rev/13d558e48592
changeset:   98323:13d558e48592
parent:      98318:320b83d96633
parent:      98322:ac11bf14618d
user:        Benjamin Peterson <benjamin at python.org>
date:        Sun Sep 27 02:14:29 2015 -0700
summary:
  merge 3.5

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