146a7f8ff6
The metaclass boilerplate is safe to apply en masse. The future import boilerplate needs code to be inspected to be sure that there aren't any py2isms that need to be fixed. Split these two checks so that we can fix them independently Be explicit about which files are grandfathered so we can fix them up one by one
11 lines
247 B
ReStructuredText
11 lines
247 B
ReStructuredText
:orphan:
|
|
|
|
Sanity Tests » boilerplate
|
|
==========================
|
|
|
|
Most Python files should include the following boilerplate:
|
|
|
|
.. code-block:: python
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|