diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2019-03-07 09:48:21 -0800 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2019-03-09 19:01:57 +0200 |
commit | bd6bae0c71d7858dabe51e03222f62d9dbfb98ef (patch) | |
tree | 393ca7ce2eb67b9da83b20c96e1697ee6020a7ec /docs/markdown | |
parent | b5cc01ccd99f2aec46768c0d2a1758d9d3317cef (diff) | |
download | meson-bd6bae0c71d7858dabe51e03222f62d9dbfb98ef.zip meson-bd6bae0c71d7858dabe51e03222f62d9dbfb98ef.tar.gz meson-bd6bae0c71d7858dabe51e03222f62d9dbfb98ef.tar.bz2 |
docs: document that the .path() method for Python is new in 0.50 [skip ci]
Since this method was not included in 0.46-00.49 we should document that.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Python-module.md | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/docs/markdown/Python-module.md b/docs/markdown/Python-module.md index a963a32..edd10ba 100644 --- a/docs/markdown/Python-module.md +++ b/docs/markdown/Python-module.md @@ -61,6 +61,17 @@ added methods. ### Methods +#### `path()` + +```meson +str py_installation.path() +``` + +*Added 0.50.0* + +Works like the path method of other `ExternalProgram` objects. Was not +provided prior to 0.50.0 due to a bug. + #### `extension_module()` ``` meson |