From 200984f0512627ffb48cbd6bcbaf2e0604fcc172 Mon Sep 17 00:00:00 2001 From: Zackery Spytz Date: Fri, 8 Feb 2019 13:32:38 -0700 Subject: [PATCH] [Python] Fix some errors in the documentation for -threads The documentation for -threads was added in f0f2fd2daee085021e8b76f823332d52f1982a06 [skip ci] --- Doc/Manual/Contents.html | 2 +- Doc/Manual/Ocaml.html | 4 ++-- Doc/Manual/Python.html | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) 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;