]> git.ipfire.org Git - thirdparty/samba.git/commitdiff
r26570: - Trim size of the swig-generated Python bindings by removing a bunch of...
authorJelmer Vernooij <jelmer@samba.org>
Mon, 24 Dec 2007 01:19:41 +0000 (19:19 -0600)
committerMichael Adam <obnox@samba.org>
Wed, 13 Feb 2008 00:40:11 +0000 (01:40 +0100)
- 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

source/lib/talloc/talloc.i

index c852ae8f9fd4df8cace84b05f79c76c7b1892956..a9afb97ed7631ec9c6602a2a752988404bcab4e8 100644 (file)
@@ -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;
 }