diff options
author | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2007-11-24 13:44:17 (GMT) |
---|---|---|
committer | Amaury Forgeot d'Arc <amauryfa@gmail.com> | 2007-11-24 13:44:17 (GMT) |
commit | ce7d10ccc4d04fd96dfd5c0d239ed81357efd3f8 (patch) | |
tree | 0f13ca75cbdaac1c1c2e712f47055cd7f66a8bca /Misc | |
parent | 6dae85f409642f29ff37c8648f977ea24883e75e (diff) | |
download | cpython-ce7d10ccc4d04fd96dfd5c0d239ed81357efd3f8.zip cpython-ce7d10ccc4d04fd96dfd5c0d239ed81357efd3f8.tar.gz cpython-ce7d10ccc4d04fd96dfd5c0d239ed81357efd3f8.tar.bz2 |
Issue #1445: Fix a SystemError when accessing the ``cell_contents``
attribute of an empty cell object. Now a ValueError is raised.
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 3 |
1 files changed, 3 insertions, 0 deletions
@@ -12,6 +12,9 @@ What's New in Python 2.6 alpha 1? Core and builtins ----------------- +- Issue #1445: Fix a SystemError when accessing the ``cell_contents`` + attribute of an empty cell object. + - Issue #1460: The utf-7 incremental decoder did not accept truncated input. It now correctly saves its state between chunks of data. |