Skip to content

Commit 686673e

Browse files
committed
int \n change to int
1 parent 5124891 commit 686673e

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Objects/abstract.c

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -733,8 +733,7 @@ int PyObject_CopyData(PyObject *dest, PyObject *src)
733733
return 0;
734734
}
735735

736-
int
737-
PyObject_CopyToObject(PyObject *obj, void *buf, Py_ssize_t len, char fort)
736+
int PyObject_CopyToObject(PyObject *obj, void *buf, Py_ssize_t len, char fort)
738737
{
739738
Py_buffer view_obj;
740739

@@ -761,7 +760,6 @@ PyObject_CopyToObject(PyObject *obj, void *buf, Py_ssize_t len, char fort)
761760
PyBuffer_Release(&view_obj);
762761
return 0;
763762
}
764-
765763
/* i'm thinking... */
766764

767765
return -1;

0 commit comments

Comments
 (0)