diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2025-03-01 21:36:10 +0530 |
---|---|---|
committer | Nirbheek Chauhan <nirbheek.chauhan@gmail.com> | 2025-03-03 18:08:58 +0530 |
commit | d16d5397e57919b50513bab13519fdbba7815c63 (patch) | |
tree | f80788a65e67a2d1f939c38db2f20fca7f2b794f /docs/markdown | |
parent | efd4193afb3ed5635909f2b88224c541aad978e7 (diff) | |
download | meson-d16d5397e57919b50513bab13519fdbba7815c63.zip meson-d16d5397e57919b50513bab13519fdbba7815c63.tar.gz meson-d16d5397e57919b50513bab13519fdbba7815c63.tar.bz2 |
docs: Mention deprecation of path(), document full_path()
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Python-module.md | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/docs/markdown/Python-module.md b/docs/markdown/Python-module.md index 1ea5e64..6608176 100644 --- a/docs/markdown/Python-module.md +++ b/docs/markdown/Python-module.md @@ -87,10 +87,22 @@ added methods. str py_installation.path() ``` -*Added 0.50.0* +*(since 0.50.0)* -Works like the path method of other `ExternalProgram` objects. Was not -provided prior to 0.50.0 due to a bug. +*Deprecated in 0.55: use `full_path()` instead* + +Works like the path method of `ExternalProgram` objects. Was not provided prior +to 0.50.0 due to a bug. + +#### `full_path()` + +```meson +str py_installation.full_path() +``` + +*(since 0.55.0)* + +Works like the `full_path()` method of `ExternalProgram` objects: [[external_program.full_path]] #### `extension_module()` |