mirror of
https://github.com/python/cpython.git
synced 2025-10-16 19:57:59 +00:00
Kill off softspace completely (except in formatter.py which seems to have
a different feature with the same name). The change to test_doctest.txt reduces the doctest failures to 3.
This commit is contained in:
parent
bdc36e4d9e
commit
79139b247b
19 changed files with 10 additions and 163 deletions
|
@ -104,8 +104,6 @@ sys_displayhook(PyObject *self, PyObject *o)
|
|||
}
|
||||
if (PyObject_SetAttrString(builtins, "_", Py_None) != 0)
|
||||
return NULL;
|
||||
if (Py_FlushLine() != 0)
|
||||
return NULL;
|
||||
outf = PySys_GetObject("stdout");
|
||||
if (outf == NULL) {
|
||||
PyErr_SetString(PyExc_RuntimeError, "lost sys.stdout");
|
||||
|
@ -113,8 +111,7 @@ sys_displayhook(PyObject *self, PyObject *o)
|
|||
}
|
||||
if (PyFile_WriteObject(o, outf, 0) != 0)
|
||||
return NULL;
|
||||
PyFile_SoftSpace(outf, 1);
|
||||
if (Py_FlushLine() != 0)
|
||||
if (PyFile_WriteString("\n", outf) != 0)
|
||||
return NULL;
|
||||
if (PyObject_SetAttrString(builtins, "_", o) != 0)
|
||||
return NULL;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue