f4d7b9a596
* Create get_exception and wildcard import code-smell tests * Add more detail to boilerplate and no-basestring descriptions * Remove the no-list-cmp test as the pylint undefined-variable test covers it
10 lines
238 B
ReStructuredText
10 lines
238 B
ReStructuredText
Sanity Tests » boilerplate
|
|
==========================
|
|
|
|
Most Python files should include the following boilerplate:
|
|
|
|
.. code-block:: python
|
|
|
|
from __future__ import (absolute_import, division, print_function)
|
|
__metaclass__ = type
|
|
|