Lines Matching +full:source +full:- +full:highlight
1 .. highlight:: c
21 instance. See :ref:`initializing-modules` for details.
23 .. highlight:: python
25 For modules with ASCII-only names, the function must be named
27 module. When using :ref:`multi-phase-initialization`, non-ASCII module names
36 suffix = b'U_' + name.encode('punycode').replace(b'-', b'_')
46 .. highlight:: c
60 .. code-block:: python3
85 meta-information to build packages, and it specifies the contents of the
87 source modules, documentation, subpackages, etc. Please refer to the distutils
88 documentation in :ref:`distutils-index` to learn more about the features of
91 It is common to pre-compute arguments to :func:`setup`, to better structure the
96 defines an extension named ``demo`` which is build by compiling a single source
103 .. code-block:: python3
128 meta-information, which
135 …-DNDEBUG -g -O3 -Wall -Wstrict-prototypes -fPIC -DMAJOR_VERSION=1 -DMINOR_VERSION=0 -I/usr/local/i…
137 …gcc -shared build/temp.linux-i686-2.2/demo.o -L/usr/local/lib -ltcl83 -o build/lib.linux-i686-2.2/…
150 End-users will typically want to install the module, they do so by running ::
154 Module maintainers should produce source packages; to do so, they run ::
158 In some cases, additional files need to be included in a source distribution;
161 If the source distribution has been built successfully, maintainers can also