Table of Contents
.in
extension, and its first line should be:
#!@PYTHON@
""" <BRIEF-DESCRIPTION> """ # Pacemaker targets compatibility with Python 2.7 and 3.2+ from __future__ import print_function, unicode_literals, absolute_import, division __copyright__ = "Copyright <YYYY[-YYYY]> the Pacemaker project contributors" __license__ = "<LICENSE> WITHOUT ANY WARRANTY"
<BRIEF-DESCRIPTION>
is obviously a brief description of the file’s purpose. The string may contain any other information typically used in a Python file docstring.
import
statement is discussed further in Section 4.2.1, “Python Future Imports”.
<LICENSE>
should follow the policy set forth in the COPYING
file, generally one of "GNU General Public License version 2 or later (GPLv2+)" or "GNU Lesser General Public License version 2.1 or later (LGPLv2.1+)".