summaryrefslogtreecommitdiffstats
path: root/docs/docsite/rst/dev_guide/testing/sanity/boilerplate.rst
blob: 51c0c089428beda405c4886b71c2beed690cd738 (plain)
1
2
3
4
5
6
7
8
9
10
11
:orphan:

boilerplate
===========

Most Python files should include the following boilerplate:

.. code-block:: python

    from __future__ import (absolute_import, division, print_function)
    __metaclass__ = type