blob: d2e3208a656cc758ba29f9743d50db836df3f7a4 [file] [log] [blame]
Georg Brandl116aa622007-08-15 14:28:22 +00001:mod:`py_compile` --- Compile Python source files
2=================================================
3
4.. module:: py_compile
5 :synopsis: Generate byte-code files from Python source files.
Christian Heimes5b5e81c2007-12-31 16:14:33 +00006.. sectionauthor:: Fred L. Drake, Jr. <fdrake@acm.org>
7.. documentation based on module docstrings
Georg Brandl116aa622007-08-15 14:28:22 +00008
9.. index:: pair: file; byte-code
10
11The :mod:`py_compile` module provides a function to generate a byte-code file
12from a source file, and another function used when the module source file is
13invoked as a script.
14
15Though not often needed, this function can be useful when installing modules for
16shared use, especially if some of the users may not have permission to write the
17byte-code cache files in the directory containing the source code.
18
19
20.. exception:: PyCompileError
21
22 Exception raised when an error occurs while attempting to compile the file.
23
24
Georg Brandl8334fd92010-12-04 10:26:46 +000025.. function:: compile(file, cfile=None, dfile=None, doraise=False, optimize=-1)
Georg Brandl116aa622007-08-15 14:28:22 +000026
Éric Araujo930df312010-12-16 06:28:48 +000027 Compile a source file to byte-code and write out the byte-code cache file.
28 The source code is loaded from the file name *file*. The byte-code is
29 written to *cfile*, which defaults to the :PEP:`3147` path, ending in
30 ``.pyc`` (``.pyo`` if optimization is enabled in the current interpreter).
31 For example, if *file* is ``/foo/bar/baz.py`` *cfile* will default to
32 ``/foo/bar/__pycache__/baz.cpython-32.pyc`` for Python 3.2. If *dfile* is
33 specified, it is used as the name of the source file in error messages when
34 instead of *file*. If *doraise* is true, a :exc:`PyCompileError` is raised
35 when an error is encountered while compiling *file*. If *doraise* is false
36 (the default), an error string is written to ``sys.stderr``, but no exception
37 is raised. This function returns the path to byte-compiled file, i.e.
38 whatever *cfile* value was used.
Georg Brandl116aa622007-08-15 14:28:22 +000039
Georg Brandl8334fd92010-12-04 10:26:46 +000040 *optimize* controls the optimization level and is passed to the built-in
41 :func:`compile` function. The default of ``-1`` selects the optimization
42 level of the current interpreter.
43
44 .. versionchanged:: 3.2
Éric Araujo930df312010-12-16 06:28:48 +000045 Changed default value of *cfile* to be :PEP:`3147`-compliant. Previous
46 default was *file* + ``'c'`` (``'o'`` if optimization was enabled).
47 Also added the *optimize* parameter.
Georg Brandl8334fd92010-12-04 10:26:46 +000048
Georg Brandl116aa622007-08-15 14:28:22 +000049
Georg Brandl18244152009-09-02 20:34:52 +000050.. function:: main(args=None)
Georg Brandl116aa622007-08-15 14:28:22 +000051
52 Compile several source files. The files named in *args* (or on the command
Georg Brandl18244152009-09-02 20:34:52 +000053 line, if *args* is ``None``) are compiled and the resulting bytecode is
Georg Brandl116aa622007-08-15 14:28:22 +000054 cached in the normal manner. This function does not search a directory
55 structure to locate source files; it only compiles files named explicitly.
Éric Araujo930df312010-12-16 06:28:48 +000056 If ``'-'`` is the only parameter in args, the list of files is taken from
57 standard input.
58
59 .. versionchanged:: 3.2
60 Added support for ``'-'``.
Georg Brandl116aa622007-08-15 14:28:22 +000061
62When this module is run as a script, the :func:`main` is used to compile all the
Christian Heimesdd15f6c2008-03-16 00:07:10 +000063files named on the command line. The exit status is nonzero if one of the files
64could not be compiled.
65
Georg Brandl116aa622007-08-15 14:28:22 +000066
67.. seealso::
68
69 Module :mod:`compileall`
70 Utilities to compile all Python source files in a directory tree.
71