Skip to content
This repository was archived by the owner on Jan 8, 2024. It is now read-only.

Commit bb79429

Browse files
committed
docs: bump
1 parent dfc7d4e commit bb79429

File tree

2 files changed

+36
-4
lines changed

2 files changed

+36
-4
lines changed

docs/subpar.html

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ <h3 id="par_test_args">Attributes</h3>
154154

155155
<h2 id="parfile">parfile</h2>
156156

157-
<pre>parfile(<a href="#parfile.name">name</a>, <a href="#parfile.src">src</a>, <a href="#parfile.compiler">compiler</a>, <a href="#parfile.compiler_args">compiler_args</a>, <a href="#parfile.default_python_version">default_python_version</a>, <a href="#parfile.imports">imports</a>, <a href="#parfile.main">main</a>, <a href="#parfile.zip_safe">zip_safe</a>)</pre>
157+
<pre>parfile(<a href="#parfile.name">name</a>, <a href="#parfile.src">src</a>, <a href="#parfile.compiler">compiler</a>, <a href="#parfile.compiler_args">compiler_args</a>, <a href="#parfile.default_python_version">default_python_version</a>, <a href="#parfile.imports">imports</a>, <a href="#parfile.main">main</a>, <a href="#parfile.no_remove">no_remove</a>, <a href="#parfile.zip_safe">zip_safe</a>)</pre>
158158

159159
<p>A self-contained, single-file Python program, with a .par file extension.</p>
160160
<p>You probably want to use par_binary() instead of this.</p>
@@ -223,6 +223,14 @@ <h3 id="parfile_args">Attributes</h3>
223223
<p>See <a href="http://www.bazel.io/docs/be/python.html#py_binary.main">py_binary.main</a></p>
224224
</td>
225225
</tr>
226+
<tr id="parfile.no_remove">
227+
<td><code>no_remove</code></td>
228+
<td>
229+
<p><code>Boolean; Optional; Default is False</code></p>
230+
<p>Whether to keep the extracted temporary directory after the
231+
program finishes, if zip_safe is enabled.</p>
232+
</td>
233+
</tr>
226234
<tr id="parfile.zip_safe">
227235
<td><code>zip_safe</code></td>
228236
<td>
@@ -239,7 +247,7 @@ <h3 id="parfile_args">Attributes</h3>
239247

240248
<h2 id="parfile_test">parfile_test</h2>
241249

242-
<pre>parfile_test(<a href="#parfile_test.name">name</a>, <a href="#parfile_test.src">src</a>, <a href="#parfile_test.compiler">compiler</a>, <a href="#parfile_test.compiler_args">compiler_args</a>, <a href="#parfile_test.default_python_version">default_python_version</a>, <a href="#parfile_test.imports">imports</a>, <a href="#parfile_test.main">main</a>, <a href="#parfile_test.zip_safe">zip_safe</a>)</pre>
250+
<pre>parfile_test(<a href="#parfile_test.name">name</a>, <a href="#parfile_test.src">src</a>, <a href="#parfile_test.compiler">compiler</a>, <a href="#parfile_test.compiler_args">compiler_args</a>, <a href="#parfile_test.default_python_version">default_python_version</a>, <a href="#parfile_test.imports">imports</a>, <a href="#parfile_test.main">main</a>, <a href="#parfile_test.no_remove">no_remove</a>, <a href="#parfile_test.zip_safe">zip_safe</a>)</pre>
243251

244252
<p>Identical to par_binary, but the rule is marked as being a test.</p>
245253
<p>You probably want to use par_test() instead of this.</p>
@@ -306,6 +314,14 @@ <h3 id="parfile_test_args">Attributes</h3>
306314
<p>See <a href="http://www.bazel.io/docs/be/python.html#py_binary.main">py_binary.main</a></p>
307315
</td>
308316
</tr>
317+
<tr id="parfile_test.no_remove">
318+
<td><code>no_remove</code></td>
319+
<td>
320+
<p><code>Boolean; Optional; Default is False</code></p>
321+
<p>Whether to keep the extracted temporary directory after the
322+
program finishes, if zip_safe is enabled.</p>
323+
</td>
324+
</tr>
309325
<tr id="parfile_test.zip_safe">
310326
<td><code>zip_safe</code></td>
311327
<td>

docs/subpar.md

Lines changed: 18 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ specifically need to test a module's behaviour when used in a .par binary.
108108
## parfile
109109

110110
<pre>
111-
parfile(<a href="#parfile.name">name</a>, <a href="#parfile.src">src</a>, <a href="#parfile.compiler">compiler</a>, <a href="#parfile.compiler_args">compiler_args</a>, <a href="#parfile.default_python_version">default_python_version</a>, <a href="#parfile.imports">imports</a>, <a href="#parfile.main">main</a>, <a href="#parfile.zip_safe">zip_safe</a>)
111+
parfile(<a href="#parfile.name">name</a>, <a href="#parfile.src">src</a>, <a href="#parfile.compiler">compiler</a>, <a href="#parfile.compiler_args">compiler_args</a>, <a href="#parfile.default_python_version">default_python_version</a>, <a href="#parfile.imports">imports</a>, <a href="#parfile.main">main</a>, <a href="#parfile.no_remove">no_remove</a>, <a href="#parfile.zip_safe">zip_safe</a>)
112112
</pre>
113113

114114
A self-contained, single-file Python program, with a .par file extension.
@@ -182,6 +182,14 @@ the application.</p>
182182
<p>See <a href="http://www.bazel.io/docs/be/python.html#py_binary.main">py_binary.main</a></p>
183183
</td>
184184
</tr>
185+
<tr id="parfile.no_remove">
186+
<td><code>no_remove</code></td>
187+
<td>
188+
<p><code>Boolean; Optional; Default is False</code></p>
189+
<p>Whether to keep the extracted temporary directory after the
190+
program finishes, if zip_safe is enabled.</p>
191+
</td>
192+
</tr>
185193
<tr id="parfile.zip_safe">
186194
<td><code>zip_safe</code></td>
187195
<td>
@@ -198,7 +206,7 @@ par file executes.</p>
198206
## parfile_test
199207

200208
<pre>
201-
parfile_test(<a href="#parfile_test.name">name</a>, <a href="#parfile_test.src">src</a>, <a href="#parfile_test.compiler">compiler</a>, <a href="#parfile_test.compiler_args">compiler_args</a>, <a href="#parfile_test.default_python_version">default_python_version</a>, <a href="#parfile_test.imports">imports</a>, <a href="#parfile_test.main">main</a>, <a href="#parfile_test.zip_safe">zip_safe</a>)
209+
parfile_test(<a href="#parfile_test.name">name</a>, <a href="#parfile_test.src">src</a>, <a href="#parfile_test.compiler">compiler</a>, <a href="#parfile_test.compiler_args">compiler_args</a>, <a href="#parfile_test.default_python_version">default_python_version</a>, <a href="#parfile_test.imports">imports</a>, <a href="#parfile_test.main">main</a>, <a href="#parfile_test.no_remove">no_remove</a>, <a href="#parfile_test.zip_safe">zip_safe</a>)
202210
</pre>
203211

204212
Identical to par_binary, but the rule is marked as being a test.
@@ -269,6 +277,14 @@ the application.</p>
269277
<p>See <a href="http://www.bazel.io/docs/be/python.html#py_binary.main">py_binary.main</a></p>
270278
</td>
271279
</tr>
280+
<tr id="parfile_test.no_remove">
281+
<td><code>no_remove</code></td>
282+
<td>
283+
<p><code>Boolean; Optional; Default is False</code></p>
284+
<p>Whether to keep the extracted temporary directory after the
285+
program finishes, if zip_safe is enabled.</p>
286+
</td>
287+
</tr>
272288
<tr id="parfile_test.zip_safe">
273289
<td><code>zip_safe</code></td>
274290
<td>

0 commit comments

Comments
 (0)