summaryrefslogtreecommitdiff
path: root/pidl
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2010-03-12 00:52:30 +0100
committerStefan Metzmacher <metze@samba.org>2010-03-12 15:25:40 +0100
commit8844acf4248ae8df9293eeff2eed8827ea802211 (patch)
treec64934ec60f6cf2a872ec46b8aae2539a17ce4dd /pidl
parentf4c227e5719abc02d510509a81f2628740b58803 (diff)
downloadsamba-8844acf4248ae8df9293eeff2eed8827ea802211.tar.gz
samba-8844acf4248ae8df9293eeff2eed8827ea802211.tar.bz2
samba-8844acf4248ae8df9293eeff2eed8827ea802211.zip
pidl:Samba/Python: don't generate methods for functions marked as [todo]
metze
Diffstat (limited to 'pidl')
-rw-r--r--pidl/lib/Parse/Pidl/Samba4/Python.pm1
1 files changed, 1 insertions, 0 deletions
diff --git a/pidl/lib/Parse/Pidl/Samba4/Python.pm b/pidl/lib/Parse/Pidl/Samba4/Python.pm
index 781d640cab..a6c2738ddc 100644
--- a/pidl/lib/Parse/Pidl/Samba4/Python.pm
+++ b/pidl/lib/Parse/Pidl/Samba4/Python.pm
@@ -648,6 +648,7 @@ sub Interface($$$)
foreach my $d (@{$interface->{FUNCTIONS}}) {
next if not defined($d->{OPNUM});
next if has_property($d, "nopython");
+ next if has_property($d, "todo");
my $prettyname = $d->{NAME};