summaryrefslogtreecommitdiff
path: root/source4/lib
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-05-22 17:42:18 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-05-23 00:37:22 +0200
commitc401aa93573460f10256218a6a1902839b17b884 (patch)
tree36abda9168874bc24f33053131b9f966bd89057e /source4/lib
parent73e2fc95901afbc71000461e7613515ca906bcff (diff)
downloadsamba-c401aa93573460f10256218a6a1902839b17b884.tar.gz
samba-c401aa93573460f10256218a6a1902839b17b884.tar.bz2
samba-c401aa93573460f10256218a6a1902839b17b884.zip
Use restructuredText formatting for docstrings.
(This used to be commit 0cc58decd74d20f3d7dff93ddef1c8bce4d49ad0)
Diffstat (limited to 'source4/lib')
-rw-r--r--source4/lib/ldb/ldb.i4
-rw-r--r--source4/lib/ldb/ldb.py2
2 files changed, 6 insertions, 0 deletions
diff --git a/source4/lib/ldb/ldb.i b/source4/lib/ldb/ldb.i
index 2c5b7535b5..21bee63ea8 100644
--- a/source4/lib/ldb/ldb.i
+++ b/source4/lib/ldb/ldb.i
@@ -920,3 +920,7 @@ time_t ldb_string_to_time(const char *s);
"Register a LDB module.";
%rename(register_module) ldb_register_module;
ldb_int_error ldb_register_module(const struct ldb_module_ops *);
+
+%pythoncode {
+__docformat__ = "restructuredText"
+}
diff --git a/source4/lib/ldb/ldb.py b/source4/lib/ldb/ldb.py
index e458398b0b..03869799c2 100644
--- a/source4/lib/ldb/ldb.py
+++ b/source4/lib/ldb/ldb.py
@@ -471,5 +471,7 @@ def register_module(*args, **kwargs):
Register a LDB module.
"""
return _ldb.register_module(*args, **kwargs)
+__docformat__ = "restructuredText"
+