Skip to content

Commit 0b5bce8

Browse files
committed
Align indentation
1 parent aa8f5bb commit 0b5bce8

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

Python/pylifecycle.c

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1311,16 +1311,16 @@ init_interp_main(PyThreadState *tstate)
13111311
}
13121312
else
13131313
#endif
1314-
{
1315-
PyObject *opt = _PyOptimizer_NewUOpOptimizer();
1316-
if (opt == NULL) {
1317-
return _PyStatus_ERR("can't initialize optimizer");
1318-
}
1319-
if (_Py_SetTier2Optimizer((_PyOptimizerObject *)opt)) {
1320-
return _PyStatus_ERR("can't install optimizer");
1314+
{
1315+
PyObject *opt = _PyOptimizer_NewUOpOptimizer();
1316+
if (opt == NULL) {
1317+
return _PyStatus_ERR("can't initialize optimizer");
1318+
}
1319+
if (_Py_SetTier2Optimizer((_PyOptimizerObject *)opt)) {
1320+
return _PyStatus_ERR("can't install optimizer");
1321+
}
1322+
Py_DECREF(opt);
13211323
}
1322-
Py_DECREF(opt);
1323-
}
13241324
}
13251325
#endif // Py_TIER2
13261326

0 commit comments

Comments
 (0)