Skip to content

Commit 1c17bfc

Browse files
committed
fixup: rangeobject
1 parent a894c4c commit 1c17bfc

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Objects/rangeobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -733,7 +733,7 @@ range_subscript(PyObject *op, PyObject *item)
733733
static PyMappingMethods range_as_mapping = {
734734
range_length, /* mp_length */
735735
range_subscript, /* mp_subscript */
736-
(objobjargproc)0, /* mp_ass_subscript */
736+
0, /* mp_ass_subscript */
737737
};
738738

739739
static int

0 commit comments

Comments
 (0)