Ver Fonte

Auto-update Python documentation

Richard Belleville há 6 anos atrás
pai
commit
fe5aa7f98f

+ 1 - 1
python/.buildinfo

@@ -1,4 +1,4 @@
 # Sphinx build info version 1
 # This file hashes the configuration used when building these files. When it is not found, a full rebuild will be done.
-config: 811be462f2f6e9f4e9c31b7d1dda4301
+config: c797fa85769b83fd0dd9c88c864b71ec
 tags: 645f666f9bcd5a90fca523b33c5a78b7

BIN
python/.doctrees/environment.pickle


BIN
python/.doctrees/glossary.doctree


BIN
python/.doctrees/grpc.doctree


BIN
python/.doctrees/grpc_channelz.doctree


BIN
python/.doctrees/grpc_health_checking.doctree


BIN
python/.doctrees/grpc_reflection.doctree


BIN
python/.doctrees/grpc_status.doctree


BIN
python/.doctrees/grpc_testing.doctree


BIN
python/.doctrees/index.doctree


+ 89 - 2
python/_modules/grpc.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>grpc &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>grpc &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
@@ -31,7 +31,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 
@@ -282,6 +282,9 @@
 <span class="sd">        If the computation has already completed, the callback will be called</span>
 <span class="sd">        immediately.</span>
 
+<span class="sd">        Exceptions raised in the callback will be logged at ERROR level, but</span>
+<span class="sd">        will not terminate any threads of execution.</span>
+
 <span class="sd">        Args:</span>
 <span class="sd">          fn: A callable taking this Future object as its single parameter.</span>
 <span class="sd">        &quot;&quot;&quot;</span>
@@ -1531,6 +1534,29 @@
 <span class="sd">          A threading.Event that will be set when this Server has completely</span>
 <span class="sd">          stopped, i.e. when running RPCs either complete or are aborted and</span>
 <span class="sd">          all handlers have terminated.</span>
+<span class="sd">        &quot;&quot;&quot;</span>
+        <span class="k">raise</span> <span class="ne">NotImplementedError</span><span class="p">()</span></div>
+
+<div class="viewcode-block" id="Server.wait_for_termination"><a class="viewcode-back" href="../grpc.html#grpc.Server.wait_for_termination">[docs]</a>    <span class="k">def</span> <span class="nf">wait_for_termination</span><span class="p">(</span><span class="bp">self</span><span class="p">,</span> <span class="n">timeout</span><span class="o">=</span><span class="kc">None</span><span class="p">):</span>
+        <span class="sd">&quot;&quot;&quot;Block current thread until the server stops.</span>
+
+<span class="sd">        This is an EXPERIMENTAL API.</span>
+
+<span class="sd">        The wait will not consume computational resources during blocking, and</span>
+<span class="sd">        it will block until one of the two following conditions are met:</span>
+
+<span class="sd">        1) The server is stopped or terminated;</span>
+<span class="sd">        2) A timeout occurs if timeout is not `None`.</span>
+
+<span class="sd">        The timeout argument works in the same way as `threading.Event.wait()`.</span>
+<span class="sd">        https://docs.python.org/3/library/threading.html#threading.Event.wait</span>
+
+<span class="sd">        Args:</span>
+<span class="sd">          timeout: A floating point number specifying a timeout for the</span>
+<span class="sd">            operation in seconds.</span>
+
+<span class="sd">        Returns:</span>
+<span class="sd">          A bool indicates if the operation times out.</span>
 <span class="sd">        &quot;&quot;&quot;</span>
         <span class="k">raise</span> <span class="ne">NotImplementedError</span><span class="p">()</span></div></div>
 
@@ -1811,6 +1837,64 @@
             <span class="n">certificate_configuration_fetcher</span><span class="p">,</span> <span class="n">require_client_authentication</span><span class="p">))</span></div>
 
 
+<span class="nd">@enum</span><span class="o">.</span><span class="n">unique</span>
+<span class="k">class</span> <span class="nc">LocalConnectionType</span><span class="p">(</span><span class="n">enum</span><span class="o">.</span><span class="n">Enum</span><span class="p">):</span>
+    <span class="sd">&quot;&quot;&quot;Types of local connection for local credential creation.</span>
+
+<span class="sd">    Attributes:</span>
+<span class="sd">      UDS: Unix domain socket connections</span>
+<span class="sd">      LOCAL_TCP: Local TCP connections.</span>
+<span class="sd">    &quot;&quot;&quot;</span>
+    <span class="n">UDS</span> <span class="o">=</span> <span class="n">_cygrpc</span><span class="o">.</span><span class="n">LocalConnectionType</span><span class="o">.</span><span class="n">uds</span>
+    <span class="n">LOCAL_TCP</span> <span class="o">=</span> <span class="n">_cygrpc</span><span class="o">.</span><span class="n">LocalConnectionType</span><span class="o">.</span><span class="n">local_tcp</span>
+
+
+<span class="k">def</span> <span class="nf">local_channel_credentials</span><span class="p">(</span><span class="n">local_connect_type</span><span class="o">=</span><span class="n">LocalConnectionType</span><span class="o">.</span><span class="n">LOCAL_TCP</span><span class="p">):</span>
+    <span class="sd">&quot;&quot;&quot;Creates a local ChannelCredentials used for local connections.</span>
+
+<span class="sd">    This is an EXPERIMENTAL API.</span>
+
+<span class="sd">    Local credentials are used by local TCP endpoints (e.g. localhost:10000)</span>
+<span class="sd">    also UDS connections. It allows them to create secure channel, hence</span>
+<span class="sd">    transmitting call credentials become possible.</span>
+
+<span class="sd">    It is useful for 1) eliminating insecure_channel usage; 2) enable unit</span>
+<span class="sd">    testing for call credentials without setting up secrets.</span>
+
+<span class="sd">    Args:</span>
+<span class="sd">      local_connect_type: Local connection type (either</span>
+<span class="sd">        grpc.LocalConnectionType.UDS or grpc.LocalConnectionType.LOCAL_TCP)</span>
+
+<span class="sd">    Returns:</span>
+<span class="sd">      A ChannelCredentials for use with a local Channel</span>
+<span class="sd">    &quot;&quot;&quot;</span>
+    <span class="k">return</span> <span class="n">ChannelCredentials</span><span class="p">(</span>
+        <span class="n">_cygrpc</span><span class="o">.</span><span class="n">channel_credentials_local</span><span class="p">(</span><span class="n">local_connect_type</span><span class="o">.</span><span class="n">value</span><span class="p">))</span>
+
+
+<span class="k">def</span> <span class="nf">local_server_credentials</span><span class="p">(</span><span class="n">local_connect_type</span><span class="o">=</span><span class="n">LocalConnectionType</span><span class="o">.</span><span class="n">LOCAL_TCP</span><span class="p">):</span>
+    <span class="sd">&quot;&quot;&quot;Creates a local ServerCredentials used for local connections.</span>
+
+<span class="sd">    This is an EXPERIMENTAL API.</span>
+
+<span class="sd">    Local credentials are used by local TCP endpoints (e.g. localhost:10000)</span>
+<span class="sd">    also UDS connections. It allows them to create secure channel, hence</span>
+<span class="sd">    transmitting call credentials become possible.</span>
+
+<span class="sd">    It is useful for 1) eliminating insecure_channel usage; 2) enable unit</span>
+<span class="sd">    testing for call credentials without setting up secrets.</span>
+
+<span class="sd">    Args:</span>
+<span class="sd">      local_connect_type: Local connection type (either</span>
+<span class="sd">        grpc.LocalConnectionType.UDS or grpc.LocalConnectionType.LOCAL_TCP)</span>
+
+<span class="sd">    Returns:</span>
+<span class="sd">      A ServerCredentials for use with a local Server</span>
+<span class="sd">    &quot;&quot;&quot;</span>
+    <span class="k">return</span> <span class="n">ServerCredentials</span><span class="p">(</span>
+        <span class="n">_cygrpc</span><span class="o">.</span><span class="n">server_credentials_local</span><span class="p">(</span><span class="n">local_connect_type</span><span class="o">.</span><span class="n">value</span><span class="p">))</span>
+
+
 <div class="viewcode-block" id="channel_ready_future"><a class="viewcode-back" href="../grpc.html#grpc.channel_ready_future">[docs]</a><span class="k">def</span> <span class="nf">channel_ready_future</span><span class="p">(</span><span class="n">channel</span><span class="p">):</span>
     <span class="sd">&quot;&quot;&quot;Creates a Future that tracks when a Channel is ready.</span>
 
@@ -1980,6 +2064,7 @@
     <span class="s1">&#39;ClientCallDetails&#39;</span><span class="p">,</span>
     <span class="s1">&#39;ServerCertificateConfiguration&#39;</span><span class="p">,</span>
     <span class="s1">&#39;ServerCredentials&#39;</span><span class="p">,</span>
+    <span class="s1">&#39;LocalConnectionType&#39;</span><span class="p">,</span>
     <span class="s1">&#39;UnaryUnaryMultiCallable&#39;</span><span class="p">,</span>
     <span class="s1">&#39;UnaryStreamMultiCallable&#39;</span><span class="p">,</span>
     <span class="s1">&#39;StreamUnaryMultiCallable&#39;</span><span class="p">,</span>
@@ -2006,6 +2091,8 @@
     <span class="s1">&#39;access_token_call_credentials&#39;</span><span class="p">,</span>
     <span class="s1">&#39;composite_call_credentials&#39;</span><span class="p">,</span>
     <span class="s1">&#39;composite_channel_credentials&#39;</span><span class="p">,</span>
+    <span class="s1">&#39;local_channel_credentials&#39;</span><span class="p">,</span>
+    <span class="s1">&#39;local_server_credentials&#39;</span><span class="p">,</span>
     <span class="s1">&#39;ssl_server_credentials&#39;</span><span class="p">,</span>
     <span class="s1">&#39;ssl_server_certificate_configuration&#39;</span><span class="p">,</span>
     <span class="s1">&#39;dynamic_ssl_server_credentials&#39;</span><span class="p">,</span>

+ 2 - 2
python/_modules/grpc/_cython.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>grpc._cython &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>grpc._cython &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="../../_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="../../" src="../../_static/documentation_options.js"></script>
@@ -31,7 +31,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/_modules/grpc_channelz/v1/channelz.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>grpc_channelz.v1.channelz &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>grpc_channelz.v1.channelz &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="../../../_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="../../../" src="../../../_static/documentation_options.js"></script>
@@ -31,7 +31,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/_modules/grpc_health/v1/health.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>grpc_health.v1.health &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>grpc_health.v1.health &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="../../../_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="../../../" src="../../../_static/documentation_options.js"></script>
@@ -31,7 +31,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/_modules/grpc_reflection/v1alpha/reflection.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>grpc_reflection.v1alpha.reflection &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>grpc_reflection.v1alpha.reflection &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="../../../_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="../../../_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="../../../" src="../../../_static/documentation_options.js"></script>
@@ -31,7 +31,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/_modules/grpc_status/rpc_status.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>grpc_status.rpc_status &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>grpc_status.rpc_status &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="../../_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="../../_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="../../" src="../../_static/documentation_options.js"></script>
@@ -31,7 +31,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/_modules/grpc_testing.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>grpc_testing &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>grpc_testing &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
@@ -31,7 +31,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/_modules/index.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>Overview: module code &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>Overview: module code &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="../_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="../_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="../" src="../_static/documentation_options.js"></script>
@@ -31,7 +31,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 1 - 1
python/_static/documentation_options.js

@@ -1,6 +1,6 @@
 var DOCUMENTATION_OPTIONS = {
     URL_ROOT: document.getElementById("documentation_options").getAttribute('data-url_root'),
-    VERSION: '1.23.0',
+    VERSION: '1.24.0',
     LANGUAGE: 'en',
     COLLAPSE_INDEX: false,
     FILE_SUFFIX: '.html',

+ 4 - 2
python/genindex.html

@@ -7,7 +7,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>Index &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>Index &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -32,7 +32,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 
@@ -736,6 +736,8 @@
 <table style="width: 100%" class="indextable genindextable"><tr>
   <td style="width: 33%; vertical-align: top;"><ul>
       <li><a href="grpc.html#grpc.ClientCallDetails.wait_for_ready">wait_for_ready (grpc.ClientCallDetails attribute)</a>
+</li>
+      <li><a href="grpc.html#grpc.Server.wait_for_termination">wait_for_termination() (grpc.Server method)</a>
 </li>
   </ul></td>
   <td style="width: 33%; vertical-align: top;"><ul>

+ 2 - 2
python/glossary.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>Glossary &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>Glossary &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -32,7 +32,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 30 - 2
python/grpc.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>gRPC &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>gRPC &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -33,7 +33,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 
@@ -1028,6 +1028,32 @@ all handlers have terminated.</td>
 </table>
 </dd></dl>
 
+<dl class="method">
+<dt id="grpc.Server.wait_for_termination">
+<code class="descname">wait_for_termination</code><span class="sig-paren">(</span><em>timeout=None</em><span class="sig-paren">)</span><a class="reference internal" href="_modules/grpc.html#Server.wait_for_termination"><span class="viewcode-link">[source]</span></a><a class="headerlink" href="#grpc.Server.wait_for_termination" title="Permalink to this definition">¶</a></dt>
+<dd><p>Block current thread until the server stops.</p>
+<p>This is an EXPERIMENTAL API.</p>
+<p>The wait will not consume computational resources during blocking, and
+it will block until one of the two following conditions are met:</p>
+<ol class="arabic simple">
+<li>The server is stopped or terminated;</li>
+<li>A timeout occurs if timeout is not <cite>None</cite>.</li>
+</ol>
+<p>The timeout argument works in the same way as <cite>threading.Event.wait()</cite>.
+<a class="reference external" href="https://docs.python.org/3/library/threading.html#threading.Event.wait">https://docs.python.org/3/library/threading.html#threading.Event.wait</a></p>
+<table class="docutils field-list" frame="void" rules="none">
+<col class="field-name" />
+<col class="field-body" />
+<tbody valign="top">
+<tr class="field-odd field"><th class="field-name">Parameters:</th><td class="field-body"><strong>timeout</strong> – A floating point number specifying a timeout for the
+operation in seconds.</td>
+</tr>
+<tr class="field-even field"><th class="field-name">Returns:</th><td class="field-body">A bool indicates if the operation times out.</td>
+</tr>
+</tbody>
+</table>
+</dd></dl>
+
 </dd></dl>
 
 </div>
@@ -2250,6 +2276,8 @@ of the computation.  Callbacks will be invoked after the future is
 terimated, whether successfully or not.</p>
 <p>If the computation has already completed, the callback will be called
 immediately.</p>
+<p>Exceptions raised in the callback will be logged at ERROR level, but
+will not terminate any threads of execution.</p>
 <table class="docutils field-list" frame="void" rules="none">
 <col class="field-name" />
 <col class="field-body" />

+ 2 - 2
python/grpc_channelz.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>gRPC Channelz &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>gRPC Channelz &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -33,7 +33,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/grpc_health_checking.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>gRPC Health Checking &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>gRPC Health Checking &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -33,7 +33,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/grpc_reflection.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>gRPC Reflection &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>gRPC Reflection &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -33,7 +33,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/grpc_status.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>gRPC Status &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>gRPC Status &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -33,7 +33,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/grpc_testing.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>gRPC Testing &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>gRPC Testing &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -33,7 +33,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 3 - 3
python/index.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>Welcome to gRPC Python’s documentation! &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>Welcome to gRPC Python’s documentation! &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -32,7 +32,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 
@@ -89,7 +89,7 @@
             
   <div class="section" id="welcome-to-grpc-python-s-documentation">
 <h1>Welcome to gRPC Python’s documentation!<a class="headerlink" href="#welcome-to-grpc-python-s-documentation" title="Permalink to this headline">¶</a></h1>
-<p>Version: 1.23.0 Release: 1.23.0</p>
+<p>Version: 1.24.0 Release: 1.24.0</p>
 </div>
 <div class="section" id="api-reference">
 <h1>API Reference<a class="headerlink" href="#api-reference" title="Permalink to this headline">¶</a></h1>

BIN
python/objects.inv


+ 2 - 2
python/py-modindex.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>Python Module Index &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>Python Module Index &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     <script type="text/javascript" id="documentation_options" data-url_root="./" src="_static/documentation_options.js"></script>
@@ -34,7 +34,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

+ 2 - 2
python/search.html

@@ -6,7 +6,7 @@
   <head>
     <meta http-equiv="X-UA-Compatible" content="IE=Edge" />
     <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
-    <title>Search &#8212; gRPC Python 1.23.0 documentation</title>
+    <title>Search &#8212; gRPC Python 1.24.0 documentation</title>
     <link rel="stylesheet" href="_static/alabaster.css" type="text/css" />
     <link rel="stylesheet" href="_static/pygments.css" type="text/css" />
     
@@ -40,7 +40,7 @@
 
 
 
-<p class="blurb">1.23.0</p>
+<p class="blurb">1.24.0</p>
 
 
 

Diff do ficheiro suprimidas por serem muito extensas
+ 0 - 0
python/searchindex.js


Alguns ficheiros não foram mostrados porque muitos ficheiros mudaram neste diff