aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Schwartz <eschwartz@archlinux.org>2022-11-26 19:56:00 -0500
committerEli Schwartz <eschwartz@archlinux.org>2022-11-26 19:56:00 -0500
commit9751c1fe61c34ea1a9e6a47cae251574586faff5 (patch)
tree81b3cc5b98db46d317e1a33708ef99c9a47e7a11
parent11fe8f11579d46870ed340dca8234ea35edf769c (diff)
downloadmeson-9751c1fe61c34ea1a9e6a47cae251574586faff5.zip
meson-9751c1fe61c34ea1a9e6a47cae251574586faff5.tar.gz
meson-9751c1fe61c34ea1a9e6a47cae251574586faff5.tar.bz2
add missing documentation for python installation default pure kwarg
-rw-r--r--docs/markdown/Python-module.md9
1 files changed, 8 insertions, 1 deletions
diff --git a/docs/markdown/Python-module.md b/docs/markdown/Python-module.md
index c80f7e9..bc4311f 100644
--- a/docs/markdown/Python-module.md
+++ b/docs/markdown/Python-module.md
@@ -53,6 +53,12 @@ Keyword arguments are the following:
*Since 0.49.0*
- `modules`: a list of module names that this python installation must have.
*Since 0.51.0*
+- `pure`: On some platforms, architecture independent files are
+ expected to be placed in a separate directory. However, if the
+ python sources should be installed alongside an extension module
+ built with this module, this keyword argument can be used to
+ override the default behavior of `.install_sources()`.
+ *since 0.64.0*
**Returns**: a [python installation][`python_installation` object]
@@ -143,7 +149,8 @@ to control the default installation path. See [Python module options](Builtin-op
expected to be placed in a separate directory. However, if the
python sources should be installed alongside an extension module
built with this module, this keyword argument can be used to
- override that behaviour. Defaults to `true`
+ override that behaviour. Defaults to the value specified in
+ `find_installation()`, or else `true`
- `subdir`: See documentation for the argument of the same name to
[][`extension_module()`]