Skip to content

Commit 9a8edf9

Browse files
committed
Fit within PEP 7
1 parent 11f7e16 commit 9a8edf9

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

Modules/atexitmodule.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,9 @@ atexit_register(PyObject *module, PyObject *args, PyObject *kwargs)
227227
}
228228

229229
struct atexit_state *state = get_atexit_state();
230-
/* (Peter Bierma/ZeroIntensity) In theory, we could hold the lock for a shorter amount of time
231-
* using some fancy compare-exchanges with the length. However, I'm lazy.
230+
/* (Peter Bierma/ZeroIntensity) In theory, we could hold the
231+
* lock for a shorter amount of time using some fancy compare-exchanges
232+
* with the length. However, I'm lazy.
232233
*/
233234
_PyAtExit_LOCK(state);
234235
if (state->ncallbacks >= state->callback_len) {

0 commit comments

Comments
 (0)