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

Skip to content

Commit fd4904c

Browse files
committed
repr("...") -> "Ellipses"
1 parent 053313a commit fd4904c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Objects/sliceobject.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ static PyObject *
1919
ellipses_repr(op)
2020
PyObject *op;
2121
{
22-
return PyString_FromString("...");
22+
return PyString_FromString("Ellipses");
2323
}
2424

2525
static PyTypeObject PyEllipses_Type = {

0 commit comments

Comments
 (0)