aboutsummaryrefslogtreecommitdiff
path: root/docs/markdown/Python-3-module.md
blob: 2a33ba8f9be0678d06f4b078be384949a6a4b2f4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
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*