diff options
author | Thibault Saunier <thibault.saunier@osg.samsung.com> | 2017-03-29 15:03:43 -0300 |
---|---|---|
committer | Jussi Pakkanen <jpakkane@gmail.com> | 2017-04-26 17:56:33 +0300 |
commit | b371875e02cce2fb3fbb9fbb8f07eb5817ae0e8f (patch) | |
tree | 6e1a3c34b1a85479d3b9f42ccd071096e637929b /docs/markdown/Python-3-module.md | |
parent | 7dc747ea54480c452b913e4bfe682ec67061c9bf (diff) | |
download | meson-b371875e02cce2fb3fbb9fbb8f07eb5817ae0e8f.zip meson-b371875e02cce2fb3fbb9fbb8f07eb5817ae0e8f.tar.gz meson-b371875e02cce2fb3fbb9fbb8f07eb5817ae0e8f.tar.bz2 |
docs: Import the website and wiki and build with hotdoc
This allows us to more easily have the documentation in sync with
the source code as people will have to document new features etc
right at the time where they implement it.
Diffstat (limited to 'docs/markdown/Python-3-module.md')
-rw-r--r-- | docs/markdown/Python-3-module.md | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/docs/markdown/Python-3-module.md b/docs/markdown/Python-3-module.md new file mode 100644 index 0000000..2a33ba8 --- /dev/null +++ b/docs/markdown/Python-3-module.md @@ -0,0 +1,27 @@ +# Python 3 module + +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. + +*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). + +*Added 0.38.0* + +## language_version + +Returns a string with the Python language version such as `3.5`. + +*Added 0.40.0* + +## sysconfig_path + +Returns the Python sysconfig path without prefix, such as `lib/python3.6/site-packages`. + +*Added 0.40.0* |