diff options
author | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-21 00:22:33 +0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-08-21 00:22:33 +0300 |
commit | 9b5a5c2e61b3eda633acbe859b0e40e9597dac25 (patch) | |
tree | d95b2f4df3bc8c5923dc0e549a5ce2ac0c0d94b5 /docs/markdown/Python-3-module.md | |
parent | 55dfe75fd7fbde4bbfa41dd96d52e2a33a480ee7 (diff) | |
download | meson-9b5a5c2e61b3eda633acbe859b0e40e9597dac25.zip meson-9b5a5c2e61b3eda633acbe859b0e40e9597dac25.tar.gz meson-9b5a5c2e61b3eda633acbe859b0e40e9597dac25.tar.bz2 |
Wrapped and alphabetized the remaining modules.
Diffstat (limited to 'docs/markdown/Python-3-module.md')
-rw-r--r-- | docs/markdown/Python-3-module.md | 15 |
1 files changed, 11 insertions, 4 deletions
diff --git a/docs/markdown/Python-3-module.md b/docs/markdown/Python-3-module.md index 2a33ba8..fa1d78e 100644 --- a/docs/markdown/Python-3-module.md +++ b/docs/markdown/Python-3-module.md @@ -1,16 +1,22 @@ # Python 3 module -This module provides support for dealing with Python 3. It has the following methods. +This module provides support for dealing with Python 3. It has the +following methods. ## 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. +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* ## 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](Reference-manual.md#shared_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](Reference-manual.md#shared_module). *Added 0.38.0* @@ -22,6 +28,7 @@ Returns a string with the Python language version such as `3.5`. ## sysconfig_path -Returns the Python sysconfig path without prefix, such as `lib/python3.6/site-packages`. +Returns the Python sysconfig path without prefix, such as +`lib/python3.6/site-packages`. *Added 0.40.0* |