8000 Move a comment. · python/cpython@6019eba · GitHub
[go: up one dir, main page]

Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 6019eba

Browse files
Move a comment.
1 parent 39a8fc7 commit 6019eba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/typeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -135,7 +135,6 @@ static_builtin_state_clear(PyTypeObject *self)
135135
assert(state != NULL);
136136
state->type = NULL;
137137
static_builtin_index_clear(self);
138-
/* We leave _Py_TPFLAGS_STATIC_BUILTIN set on tp_flags. */
139138

140139
PyInterpreterState *interp = _PyInterpreterState_GET();
141140
assert(interp->types.num_builtins_initialized > 0);
@@ -4352,6 +4351,7 @@ _PyStaticType_Dealloc(PyTypeObject *type)
43524351

43534352
if (type->tp_flags & _Py_TPFLAGS_STATIC_BUILTIN) {
43544353
static_builtin_state_clear(type);
4354+
/* We leave _Py_TPFLAGS_STATIC_BUILTIN set on tp_flags. */
43554355
}
43564356
}
43574357

0 commit comments

Comments
 (0)
0