File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -3409,7 +3409,8 @@ static PyGetSetDef pystatx_result_getset[] = {
34093409#undef GM
34103410
34113411static 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
34803481static 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
34863488static 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 );
You can’t perform that action at this time.
0 commit comments