Skip to content

Commit

Permalink
docs: Mention deprecation of path(), document full_path()
Browse files Browse the repository at this point in the history
  • Loading branch information
nirbheek committed Mar 3, 2025
1 parent efd4193 commit d16d539
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions docs/markdown/Python-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()`

Expand Down

0 comments on commit d16d539

Please sign in to comment.