Kaydet (Commit) fd4904c6 authored tarafından Guido van Rossum's avatar Guido van Rossum

repr("...") -> "Ellipses"

üst 053313a5
...@@ -19,7 +19,7 @@ static PyObject * ...@@ -19,7 +19,7 @@ static PyObject *
ellipses_repr(op) ellipses_repr(op)
PyObject *op; PyObject *op;
{ {
return PyString_FromString("..."); return PyString_FromString("Ellipses");
} }
static PyTypeObject PyEllipses_Type = { static PyTypeObject PyEllipses_Type = {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment