New issue 2837: interactive stdout buffer not flushed if no end-of-line and 
exception
https://bitbucket.org/pypy/pypy/issues/2837/interactive-stdout-buffer-not-flushed-if

Armin Rigo:

Interactively:

```
#!python

>>>> print 5,; 0 / 0
Traceback (most recent call last):
  File "<stdin>", line 1, in <module>
ZeroDivisionError: integer division by zero
>>>> # the 5 is buffered and doesn't show up yet
5
>>>> 
```

On CPython the 5 is shown before the exception, as expected.


_______________________________________________
pypy-issue mailing list
pypy-issue@python.org
https://mail.python.org/mailman/listinfo/pypy-issue

Reply via email to