diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2022-04-24 14:47:58 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2022-04-24 14:52:47 +0300 |
commit | 393ce77450fcf7d3d55f04ce79761b10a432fa20 (patch) | |
tree | e9faa4b4fa39b3520718f99405cb754f478ad5b1 /docs | |
parent | 660bfa6e7c8dfb7bd8bffdb68c053e1a22945f8a (diff) | |
download | meson-393ce77450fcf7d3d55f04ce79761b10a432fa20.zip meson-393ce77450fcf7d3d55f04ce79761b10a432fa20.tar.gz meson-393ce77450fcf7d3d55f04ce79761b10a432fa20.tar.bz2 |
Remove deprecated python3 module.
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Python-3-module.md | 52 | ||||
-rw-r--r-- | docs/markdown/snippets/pymod3.md | 5 |
2 files changed, 6 insertions, 51 deletions
diff --git a/docs/markdown/Python-3-module.md b/docs/markdown/Python-3-module.md index 1631b2a..7d1a08b 100644 --- a/docs/markdown/Python-3-module.md +++ b/docs/markdown/Python-3-module.md @@ -3,55 +3,5 @@ This module provides support for dealing with Python 3. It has the following methods. -This module is deprecated and replaced by the +This module is has been deleted and replaced by the [python](Python-module.md) module. - -## find_python - -This is a cross platform way of finding the Python 3 executable, which -may have a different name on different operating systems. Returns an -[[@external_program]] -object. - -*Added 0.38.0* - -Deprecated, replaced by -[`find_installation`](Python-module.md#find_installation) function -from `python` module. - -## extension_module - -Creates a `shared_module` target that is named according to the naming -conventions of the target platform. All positional and keyword -arguments are the same as for -[[shared_module]]. - -`extension_module` does not add any dependencies to the library so user may -need to add `dependencies : dependency('python3')`, see -[Python3 dependency](Dependencies.md#python3). - -*Added 0.38.0* - -Deprecated, replaced by -[`extension_module`](Python-module.md#extension_module) method from -`python` module. - -## language_version - -Returns a string with the Python language version such as `3.5`. - -*Added 0.40.0* - -Deprecated, replaced by -[`language_version`](Python-module.md#language_version) method from -`python` module. - -## sysconfig_path - -Returns the Python sysconfig path without prefix, such as -`lib/python3.6/site-packages`. - -*Added 0.40.0* - -Deprecated, replaced by [`get_path`](Python-module.md#get_path) -method from `python` module. diff --git a/docs/markdown/snippets/pymod3.md b/docs/markdown/snippets/pymod3.md new file mode 100644 index 0000000..edb66af --- /dev/null +++ b/docs/markdown/snippets/pymod3.md @@ -0,0 +1,5 @@ +## The `python3` module has been removed + +It has been deprecated for a long time so finally removing it. The +`python` module should be used instead. It does everything the +`python3` module did and more. |