mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
repr("...") -> "Ellipses"
This commit is contained in:
parent
053313a507
commit
fd4904c630
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ static PyObject *
|
|||
ellipses_repr(op)
|
||||
PyObject *op;
|
||||
{
|
||||
return PyString_FromString("...");
|
||||
return PyString_FromString("Ellipses");
|
||||
}
|
||||
|
||||
static PyTypeObject PyEllipses_Type = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue