summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJelmer Vernooij <jelmer@samba.org>2007-12-23 19:19:41 -0600
committerMichael Adam <obnox@samba.org>2008-02-13 01:40:11 +0100
commit3d33ad711c6a700e57a73126a17a88b637b36679 (patch)
treebe36b5ff3e647834de70e76447381a71f6e5a1f4
parent5a9f0cabf6512bcda1c05510a0f6f3affa91bd85 (diff)
downloadsamba-3d33ad711c6a700e57a73126a17a88b637b36679.tar.gz
samba-3d33ad711c6a700e57a73126a17a88b637b36679.tar.bz2
samba-3d33ad711c6a700e57a73126a17a88b637b36679.zip
r26570: - Trim size of the swig-generated Python bindings by removing a bunch of {}'s.
- Start working on Python equivalents for various EJS tests. - Fix regression in argument order for reg_diff_apply() in EJS bindings. (cherry picked from talloc part of commit c550c03372cb260b78f6a6c132e70571bc4cb852) Michael (This used to be commit a146145c28cc355fed47b8a1f322311ffc1a51ab)
-rw-r--r--source3/lib/talloc/talloc.i2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/talloc/talloc.i b/source3/lib/talloc/talloc.i
index c852ae8f9f..a9afb97ed7 100644
--- a/source3/lib/talloc/talloc.i
+++ b/source3/lib/talloc/talloc.i
@@ -19,7 +19,7 @@
/* Don't expose talloc contexts in Python code. Python does reference
counting for us, so just create a new top-level talloc context.
*/
-%typemap(in, numinputs=0) TALLOC_CTX * {
+%typemap(in, numinputs=0, noblock=1) TALLOC_CTX * {
$1 = NULL;
}