cpython: be6f3449ac13 (original) (raw)

Mercurial > cpython

changeset 103145:be6f3449ac13

Issue #26798: for loop initial declarations are only allowed in C99 or C11 mode [#26798]

Christian Heimes christian@python.org
date Tue, 06 Sep 2016 23🔞03 +0200
parents 231f578dfd3d
children 2b9af57af3e4
files Modules/_blake2/impl/blake2b-ref.c Modules/_blake2/impl/blake2b.c Modules/_blake2/impl/blake2s-ref.c Modules/_blake2/impl/blake2s.c
diffstat 4 files changed, 18 insertions(+), 9 deletions(-)[+] [-] Modules/_blake2/impl/blake2b-ref.c 6 Modules/_blake2/impl/blake2b.c 6 Modules/_blake2/impl/blake2s-ref.c 6 Modules/_blake2/impl/blake2s.c 9

line wrap: on

line diff

--- a/Modules/_blake2/impl/blake2b-ref.c +++ b/Modules/_blake2/impl/blake2b-ref.c @@ -145,9 +145,10 @@ BLAKE2_LOCAL_INLINE(int) blake2b_param_s BLAKE2_LOCAL_INLINE(int) blake2b_init0( blake2b_state *S ) {

--- a/Modules/_blake2/impl/blake2b.c +++ b/Modules/_blake2/impl/blake2b.c @@ -174,9 +174,10 @@ BLAKE2_LOCAL_INLINE(int) blake2b_param_s BLAKE2_LOCAL_INLINE(int) blake2b_init0( blake2b_state *S ) {

--- a/Modules/_blake2/impl/blake2s-ref.c +++ b/Modules/_blake2/impl/blake2s-ref.c @@ -138,9 +138,10 @@ BLAKE2_LOCAL_INLINE(int) blake2s_param_s BLAKE2_LOCAL_INLINE(int) blake2s_init0( blake2s_state *S ) {

--- a/Modules/_blake2/impl/blake2s.c +++ b/Modules/_blake2/impl/blake2s.c @@ -161,9 +161,10 @@ BLAKE2_LOCAL_INLINE(int) blake2s_param_s BLAKE2_LOCAL_INLINE(int) blake2s_init0( blake2s_state *S ) {