diff options
author | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2000-10-04 16:34:09 (GMT) |
---|---|---|
committer | Neil Schemenauer <nascheme@enme.ucalgary.ca> | 2000-10-04 16:34:09 (GMT) |
commit | b2c2c9e9776e69d4d7860f89ef385885a6938ea5 (patch) | |
tree | 49803681f35c40a7a19c6b00d58648ea75b12433 /Modules | |
parent | 97d723bd6219f2d460a68137e5e23533888164c2 (diff) | |
download | cpython-b2c2c9e9776e69d4d7860f89ef385885a6938ea5.zip cpython-b2c2c9e9776e69d4d7860f89ef385885a6938ea5.tar.gz cpython-b2c2c9e9776e69d4d7860f89ef385885a6938ea5.tar.bz2 |
- update Neil's email address
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/gcmodule.c | 8 |
1 files changed, 2 insertions, 6 deletions
diff --git a/Modules/gcmodule.c b/Modules/gcmodule.c index ba95032..a879ef6 100644 --- a/Modules/gcmodule.c +++ b/Modules/gcmodule.c @@ -3,12 +3,12 @@ Reference Cycle Garbage Collection ================================== - Neil Schemenauer <nascheme@enme.ucalgary.ca> + Neil Schemenauer <nas@arctrix.com> Based on a post on the python-dev list. Ideas from Guido van Rossum, Eric Tiedemann, and various others. - http://www.enme.calgary.ca/~nascheme/python/gc.html + http://www.arctrix.com/nas/python/gc.html http://www.python.org/pipermail/python-dev/2000-March/003869.html http://www.python.org/pipermail/python-dev/2000-March/004010.html http://www.python.org/pipermail/python-dev/2000-March/004022.html @@ -16,10 +16,6 @@ For a highlevel view of the collection process, read the collect function. - TODO: - use a different interface for set_debug() (keywords)? - tune parameters - */ |