[pypy-svn] r47589 - pypy/dist/pypy/doc/config

arigo at codespeak.net arigo at codespeak.net
Fri Oct 19 16:41:28 CEST 2007


Author: arigo
Date: Fri Oct 19 16:41:27 2007
New Revision: 47589

Removed:
   pypy/dist/pypy/doc/config/translation.frameworkgc.txt
Modified:
   pypy/dist/pypy/doc/config/translation.gc.txt
Log:
Fix config documentation.


Modified: pypy/dist/pypy/doc/config/translation.gc.txt
==============================================================================
--- pypy/dist/pypy/doc/config/translation.gc.txt	(original)
+++ pypy/dist/pypy/doc/config/translation.gc.txt	Fri Oct 19 16:41:27 2007
@@ -3,10 +3,11 @@
   - "ref": reference counting. Takes very long to translate and the result is
     slow.
 
-  - "framework": one of our custom garbage collectors. Takes moderately long
-    and is the fastest option without external dependencies.  See
-    :config:`translation.frameworkgc`.
+  - "marksweep": naive mark & sweep.
 
-  - "boehm": use the Boehm conservative GC
+  - "semispace": a copying semi-space GC.
 
+  - "generation": a generational GC using the semi-space GC for the
+    older generation.
 
+  - "boehm": use the Boehm conservative GC.



More information about the Pypy-commit mailing list