summaryrefslogtreecommitdiff
path: root/source4/pidl/lib
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2008-04-07 23:21:38 +0200
committerJelmer Vernooij <jelmer@samba.org>2008-04-07 23:21:38 +0200
commitf07ded6d8921a4a2572d07af2b10aede0b4ce0cb (patch)
tree6df07b3620938f68232475cf5742d342338ae2dc /source4/pidl/lib
parentc30f9add8cc5b060b73381f53671ecd01c31cdd8 (diff)
downloadsamba-f07ded6d8921a4a2572d07af2b10aede0b4ce0cb.tar.gz
samba-f07ded6d8921a4a2572d07af2b10aede0b4ce0cb.tar.bz2
samba-f07ded6d8921a4a2572d07af2b10aede0b4ce0cb.zip
Add simple docstring for Python modules.
(This used to be commit 57c7b4e896116f06b39e0040ad386c561d76bd3d)
Diffstat (limited to 'source4/pidl/lib')
-rw-r--r--source4/pidl/lib/Parse/Pidl/Samba4/Python.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/pidl/lib/Parse/Pidl/Samba4/Python.pm b/source4/pidl/lib/Parse/Pidl/Samba4/Python.pm
index 2475925377..6d51d8ec56 100644
--- a/source4/pidl/lib/Parse/Pidl/Samba4/Python.pm
+++ b/source4/pidl/lib/Parse/Pidl/Samba4/Python.pm
@@ -929,7 +929,7 @@ sub Parse($$$$$)
$self->pidl("{");
$self->indent;
$self->pidl("PyObject *m;");
- $self->pidl("m = Py_InitModule(\"$basename\", $basename\_methods);");
+ $self->pidl("m = Py_InitModule3(\"$basename\", $basename\_methods, \"$basename DCE/RPC interface\");");
foreach my $name (keys %{$self->{constants}}) {
my $py_obj;
my ($ctype, $cvar) = @{$self->{constants}->{$name}};