Skip to content

Commit b868363

Browse files
committed
Fix formatting
1 parent 1b787b3 commit b868363

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Python/specialize.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1583,19 +1583,19 @@ specialize_attr_loadclassattr(PyObject *owner, _Py_CODEUNIT *instr,
15831583
assert(descr != NULL);
15841584
assert((is_method && kind == METHOD) || (!is_method && kind == NON_DESCRIPTOR));
15851585

1586-
#ifdef Py_GIL_DISABLED
1586+
#ifdef Py_GIL_DISABLED
15871587
if (!_PyObject_HasDeferredRefcount(descr)) {
15881588
SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_ATTR_DESCR_NOT_DEFERRED);
15891589
return 0;
15901590
}
1591-
#endif
1591+
#endif
15921592

15931593
unsigned long tp_flags = PyType_GetFlags(owner_cls);
15941594
if (tp_flags & Py_TPFLAGS_INLINE_VALUES) {
1595-
#ifndef Py_GIL_DISABLED
1595+
#ifndef Py_GIL_DISABLED
15961596
PyDictKeysObject *keys = ((PyHeapTypeObject *)owner_cls)->ht_cached_keys;
15971597
assert(_PyDictKeys_StringLookup(keys, name) < 0);
1598-
#endif
1598+
#endif
15991599
if (shared_keys_version == 0) {
16001600
SPECIALIZATION_FAIL(LOAD_ATTR, SPEC_FAIL_OUT_OF_VERSIONS);
16011601
return 0;

0 commit comments

Comments
 (0)