diff options
author | Dylan Baker <dylan@pnwbakers.com> | 2018-10-26 09:35:54 -0700 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2018-10-27 16:07:14 +0300 |
commit | 1e054ad2b99957140450998941f22f3c50eea936 (patch) | |
tree | 0cf9896a0b12d3d3898b93ff0614854fc325cbeb /docs/markdown/Python-3-module.md | |
parent | 7458e762a3cb44e3cae6f96e2ee811535c576fef (diff) | |
download | meson-1e054ad2b99957140450998941f22f3c50eea936.zip meson-1e054ad2b99957140450998941f22f3c50eea936.tar.gz meson-1e054ad2b99957140450998941f22f3c50eea936.tar.bz2 |
docs: Fix hotdoc warnings [skip ci]
Hotdoc really wants internal links to point to the .md files instead of
the generated names. Which makes sense, as we're currently relying on
the fact that meson only generated .html pages.
Diffstat (limited to 'docs/markdown/Python-3-module.md')
-rw-r--r-- | docs/markdown/Python-3-module.md | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/docs/markdown/Python-3-module.md b/docs/markdown/Python-3-module.md index 187a3ec..50ec4e4 100644 --- a/docs/markdown/Python-3-module.md +++ b/docs/markdown/Python-3-module.md @@ -3,17 +3,17 @@ This module provides support for dealing with Python 3. It has the following methods. -This module is deprecated and replaced by the [python](Python-module.html) module. +This module is deprecated 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](Reference-manual.html#external-program-object) object. +[external program](Reference-manual.md#external-program-object) object. *Added 0.38.0* -Deprecated, replaced by [`find_installation`](Python-module.html#find_installation) +Deprecated, replaced by [`find_installation`](Python-module.md#find_installation) function from `python` module. ## extension_module @@ -29,7 +29,7 @@ need to add `dependencies : dependency('python3')`, see *Added 0.38.0* -Deprecated, replaced by [`extension_module`](Python-module.html#extension_module) +Deprecated, replaced by [`extension_module`](Python-module.md#extension_module) method from `python` module. ## language_version @@ -38,7 +38,7 @@ Returns a string with the Python language version such as `3.5`. *Added 0.40.0* -Deprecated, replaced by [`language_version`](Python-module.html#language_version) +Deprecated, replaced by [`language_version`](Python-module.md#language_version) method from `python` module. ## sysconfig_path @@ -48,5 +48,5 @@ Returns the Python sysconfig path without prefix, such as *Added 0.40.0* -Deprecated, replaced by [`get_path`](Python-module.html#get_path) +Deprecated, replaced by [`get_path`](Python-module.md#get_path) method from `python` module. |