Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix for pre-commit.
  • Loading branch information
LindaSummer committed Nov 16, 2025
commit e91503918074d5a2f2a8b9578bc64002205f89f6
2 changes: 1 addition & 1 deletion Objects/typeobject.c
Original file line number Diff line number Diff line change
Expand Up @@ -6585,7 +6585,7 @@ type_setattro(PyObject *self, PyObject *name, PyObject *value)
}
}


Comment thread
LindaSummer marked this conversation as resolved.
Outdated
BEGIN_TYPE_DICT_LOCK(dict);
res = type_update_dict(type, (PyDictObject *)dict, name, value, &old_value);
assert(_PyType_CheckConsistency(type));
Expand Down
2 changes: 1 addition & 1 deletion Tools/ftscalingbench/ftscalingbench.py
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ def method_caller():
obj = MyClass()
for i in range(1000 * WORK_SCALE):
mc(obj)

@dataclass
class MyDataClass:
x: int
Expand Down