Author: Antonio Cuni <[email protected]>
Branch: py3k
Changeset: r53099:5a558b1ae15d
Date: 2012-03-02 11:24 +0100
http://bitbucket.org/pypy/pypy/changeset/5a558b1ae15d/

Log:    add docs for the atexit module, and kill a clearly out-of-place
        comment

diff --git a/pypy/doc/config/objspace.usemodules.atexit.txt 
b/pypy/doc/config/objspace.usemodules.atexit.txt
new file mode 100644
--- /dev/null
+++ b/pypy/doc/config/objspace.usemodules.atexit.txt
@@ -0,0 +1,2 @@
+Use the 'atexit' module.
+Allow programmer to define multiple exit functions to be executed upon normal 
program termination.
diff --git a/pypy/module/atexit/__init__.py b/pypy/module/atexit/__init__.py
--- a/pypy/module/atexit/__init__.py
+++ b/pypy/module/atexit/__init__.py
@@ -1,8 +1,3 @@
-"""A _string module, to export formatter_parser and
-   formatter_field_name_split to the string.Formatter class
-   implemented in Python."""
-
-
 from pypy.interpreter.mixedmodule import MixedModule
 
 class Module(MixedModule):
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to