Skip to content

Commit 24e607d

Browse files
authored
Apply suggestions from code review
1 parent b6f5ffd commit 24e607d

File tree

1 file changed

+6
-3
lines changed

1 file changed

+6
-3
lines changed

Modules/posixmodule.c

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3409,7 +3409,8 @@ static PyGetSetDef pystatx_result_getset[] = {
34093409
#undef GM
34103410

34113411
static PyObject *
3412-
pystatx_result_repr(PyObject *op) {
3412+
pystatx_result_repr(PyObject *op)
3413+
{
34133414
PyUnicodeWriter *writer = PyUnicodeWriter_Create(0);
34143415
if (writer == NULL) {
34153416
return NULL;
@@ -3478,13 +3479,15 @@ pystatx_result_repr(PyObject *op) {
34783479
}
34793480

34803481
static int
3481-
pystatx_result_traverse(PyObject *self, visitproc visit, void *arg) {
3482+
pystatx_result_traverse(PyObject *self, visitproc visit, void *arg)
3483+
{
34823484
Py_VISIT(Py_TYPE(self));
34833485
return 0;
34843486
}
34853487

34863488
static void
3487-
pystatx_result_dealloc(PyObject *op) {
3489+
pystatx_result_dealloc(PyObject *op)
3490+
{
34883491
Py_statx_result *self = (Py_statx_result *) op;
34893492
PyTypeObject *tp = Py_TYPE(self);
34903493
PyObject_GC_UnTrack(self);

0 commit comments

Comments
 (0)