summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Doc/lib/libgc.tex4
-rw-r--r--Modules/gcmodule.c8
2 files changed, 4 insertions, 8 deletions
diff --git a/Doc/lib/libgc.tex b/Doc/lib/libgc.tex
index a39f755..cfd563c 100644
--- a/Doc/lib/libgc.tex
+++ b/Doc/lib/libgc.tex
@@ -3,8 +3,8 @@
\declaremodule{extension}{gc}
\modulesynopsis{Interface to the cycle-detecting garbage collector.}
-\moduleauthor{Neil Schemenauer}{nascheme@enme.ucalgary.ca}
-\sectionauthor{Neil Schemenauer}{nascheme@enme.ucalgary.ca}
+\moduleauthor{Neil Schemenauer}{nas@arctrix.com}
+\sectionauthor{Neil Schemenauer}{nas@arctrix.com}
The \module{gc} module is only available if the interpreter was built
with the optional cyclic garbage detector (enabled by default). If
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
-
*/