Bug #1535165: fixed a segfault in input() and raw_input() when

sys.stdin is closed.
This commit is contained in:
Georg Brandl 2006-08-06 08:23:54 +00:00
parent 534fe18e17
commit 7e3ba2a699
3 changed files with 12 additions and 1 deletions

View file

@ -12,6 +12,9 @@ What's New in Python 2.5 release candidate 1?
Core and builtins
-----------------
- Bug #1535165: fixed a segfault in input() and raw_input() when
sys.stdin is closed.
- On Windows, the PyErr_Warn function is now exported from
the Python dll again.