diff options
author | Georg Brandl <georg@python.org> | 2006-03-18 07:59:59 (GMT) |
---|---|---|
committer | Georg Brandl <georg@python.org> | 2006-03-18 07:59:59 (GMT) |
commit | abd1ff8f1f6f2840345756081837994fdefaa52b (patch) | |
tree | 298b063bb5505e62081b2267f4480d7728712481 /Misc | |
parent | 237037beb53822cacce21e20d624bb74977dadcb (diff) | |
download | cpython-abd1ff8f1f6f2840345756081837994fdefaa52b.zip cpython-abd1ff8f1f6f2840345756081837994fdefaa52b.tar.gz cpython-abd1ff8f1f6f2840345756081837994fdefaa52b.tar.bz2 |
Previously, Python code had no easy way to access the contents of a
cell object. Now, a ``cell_contents`` attribute has been added
(closes patch #1170323).
Diffstat (limited to 'Misc')
-rw-r--r-- | Misc/NEWS | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -12,6 +12,10 @@ What's New in Python 2.5 alpha 1? Core and builtins ----------------- +- Previously, Python code had no easy way to access the contents of a + cell object. Now, a ``cell_contents`` attribute has been added + (closes patch #1170323). + - Patch #1123430: Python's small-object allocator now returns an arena to the system ``free()`` when all memory within an arena becomes unused again. Prior to Python 2.5, arenas (256KB chunks of memory) were never |