Add more entries to the glossary.

Written by Jeff Wheeler for GHOP.
This commit is contained in:
Georg Brandl 2007-12-02 14:58:50 +00:00
parent b15a8df519
commit 584265b001
21 changed files with 166 additions and 64 deletions

View file

@ -239,8 +239,8 @@ Weak References
===============
Python does automatic memory management (reference counting for most objects and
garbage collection to eliminate cycles). The memory is freed shortly after the
last reference to it has been eliminated.
:term:`garbage collection` to eliminate cycles). The memory is freed shortly
after the last reference to it has been eliminated.
This approach works fine for most applications but occasionally there is a need
to track objects only as long as they are being used by something else.