diff --git a/Doc/Manual/Contents.html b/Doc/Manual/Contents.html index fbfc7d751..d30337058 100644 --- a/Doc/Manual/Contents.html +++ b/Doc/Manual/Contents.html @@ -1813,7 +1813,7 @@
  • Director Usage Example
  • Creating director objects
  • Typemaps for directors, directorin, directorout, directorargout -
  • typemap +
  • directorin typemap
  • directorout typemap
  • directorargout typemap diff --git a/Doc/Manual/Ocaml.html b/Doc/Manual/Ocaml.html index 8e456b9e6..6da866157 100644 --- a/Doc/Manual/Ocaml.html +++ b/Doc/Manual/Ocaml.html @@ -47,7 +47,7 @@
  • Director Usage Example
  • Creating director objects
  • Typemaps for directors, directorin, directorout, directorargout -
  • typemap +
  • directorin typemap
  • directorout typemap
  • directorargout typemap @@ -948,7 +948,7 @@ well as a function return value in the same way you provide function arguments, and to receive arguments the same way you normally receive function returns.

    -

    38.2.5.6 typemap

    +

    38.2.5.6 directorin typemap

    diff --git a/Doc/Manual/Python.html b/Doc/Manual/Python.html index 9d5d2a307..20e95775f 100644 --- a/Doc/Manual/Python.html +++ b/Doc/Manual/Python.html @@ -7259,12 +7259,12 @@ will not be able to run any other threads, even if the wrapped C/C++ code is wai

    The threads module option in the *.i template file:

    -
    %feature("nothread") method;
    +
    %module("threads"=1)
  • You can disable thread support for a given method:

    -
    %module("threads"=1)
    +
    %feature("nothread") method;
    or
    %nothread method;