Skip to content

Commit 2cfcb12

Browse files
committed
pep7
1 parent 0384e6b commit 2cfcb12

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

Modules/sha512module.c

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -434,11 +434,13 @@ static inline SHA512State* sha512_get_state(PyObject *module)
434434
return (SHA512State *)state;
435435
}
436436

437-
static SHAobject *newSHA384object(SHA512State *st) {
437+
static SHAobject *newSHA384object(SHA512State *st)
438+
{
438439
return (SHAobject *)PyObject_New(SHAobject, st->sha384_type);
439440
}
440441

441-
static SHAobject *newSHA512object(SHA512State *st) {
442+
static SHAobject *newSHA512object(SHA512State *st)
443+
{
442444
return (SHAobject *)PyObject_New(SHAobject, st->sha512_type);
443445
}
444446

0 commit comments

Comments
 (0)