diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-05-24 04:01:57 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-05-24 04:01:57 +0200 |
commit | 73b789b6d25698dba15c867c71d0cdd8c264f352 (patch) | |
tree | c6c94f7fffbd9461424a53fc9ebdbd5b11b95303 /source4/param | |
parent | b9c3aae792d06e01802c860f9cb8a463fb2a7428 (diff) | |
download | samba-73b789b6d25698dba15c867c71d0cdd8c264f352.tar.gz samba-73b789b6d25698dba15c867c71d0cdd8c264f352.tar.xz samba-73b789b6d25698dba15c867c71d0cdd8c264f352.zip |
Add docstrings to a couple more python modules.
(This used to be commit b4560c90e5e8d3a35367d3a21d361dc4c9c0de23)
Diffstat (limited to 'source4/param')
-rw-r--r-- | source4/param/param.i | 2 | ||||
-rw-r--r-- | source4/param/param.py | 4 |
2 files changed, 5 insertions, 1 deletions
diff --git a/source4/param/param.i b/source4/param/param.i index 2c15f8f5e38..ad42919998c 100644 --- a/source4/param/param.i +++ b/source4/param/param.i @@ -16,7 +16,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>. */ -%module(package="samba.param") param +%module(docstring="Parsing and writing Samba configuration files.",package="samba.param") param %{ #include <stdint.h> diff --git a/source4/param/param.py b/source4/param/param.py index 3aebaf0e021..46c75cef974 100644 --- a/source4/param/param.py +++ b/source4/param/param.py @@ -3,6 +3,10 @@ # # Don't modify this file, modify the SWIG interface instead. +""" +Parsing and writing Samba configuration files. +""" + import _param import new new_instancemethod = new.instancemethod |