diff options
author | Stefan Metzmacher <metze@samba.org> | 2010-03-12 00:52:30 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-03-12 15:25:40 +0100 |
commit | 8844acf4248ae8df9293eeff2eed8827ea802211 (patch) | |
tree | c64934ec60f6cf2a872ec46b8aae2539a17ce4dd /pidl | |
parent | f4c227e5719abc02d510509a81f2628740b58803 (diff) | |
download | samba-8844acf4248ae8df9293eeff2eed8827ea802211.tar.gz |
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.pm | 1 |
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 781d640cabd..a6c2738ddca 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}; |