summaryrefslogtreecommitdiffstats
path: root/Misc/NEWS
diff options
context:
space:
mode:
authorJeremy Hylton <jeremy@alum.mit.edu>2000-09-26 17:42:51 (GMT)
committerJeremy Hylton <jeremy@alum.mit.edu>2000-09-26 17:42:51 (GMT)
commit97693b047932e0c3dfc5ff823df2e31d0e9a83cf (patch)
treeeb0bfffac1406c189e625f74aa8adcf4936125a5 /Misc/NEWS
parentd635b1d724e79a1d2dce416b29a95c389fdfab30 (diff)
downloadcpython-97693b047932e0c3dfc5ff823df2e31d0e9a83cf.zip
cpython-97693b047932e0c3dfc5ff823df2e31d0e9a83cf.tar.gz
cpython-97693b047932e0c3dfc5ff823df2e31d0e9a83cf.tar.bz2
Fix GC news
Diffstat (limited to 'Misc/NEWS')
-rw-r--r--Misc/NEWS9
1 files changed, 4 insertions, 5 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index f75f5a6..3fa65b2 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -219,15 +219,14 @@ Internals
- Several of the internal Unicode tables are much smaller now, and
the source code should be much friendlier to weaker compilers.
-- Fixed GC bug that caused some instances to be removed from the
- container set while they were still live.
+- In the garbage collector: Fixed bug in collection of tuples. Fixed
+ bug that caused some instances to be removed from the container set
+ while they were still live. Fixed parsing in gc.set_debug() for
+ platforms where sizeof(long) > sizeof(int).
- Fixed refcount problem in instance deallocation that only occurred
when Py_REF_DEBUG was defined and Py_TRACE_REFS was not.
-- In the garbage collector: No longer sets an object's type slot to
- NULL. Fix bug in collection of tuples.
-
- On Windows, getpythonregpath is now protected against null data in
registry key.