Skip to content

Commit e1d9549

Browse files
committed
nit
1 parent 9eff9a9 commit e1d9549

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Objects/dictobject.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2455,8 +2455,7 @@ dict_dealloc(PyObject *self)
24552455
#ifdef WITH_FREELISTS
24562456
struct _Py_dict_freelist *state = get_dict_state();
24572457
if (state->numfree < PyDict_MAXFREELIST && state->numfree >=0 &&
2458-
Py_IS_TYPE(mp, &PyDict_Type))
2459-
{
2458+
Py_IS_TYPE(mp, &PyDict_Type)) {
24602459
state->free_list[state->numfree++] = mp;
24612460
OBJECT_STAT_INC(to_freelist);
24622461
}

0 commit comments

Comments
 (0)