Fixes errors:
src/flake8/__init__.py:22:1: I202 Additional newline in a section of imports.
tests/unit/test_setuptools_command.py:4:1: I202 Additional newline in a section of imports.
For src/flake8/__init__.py, simply remove the Python 2.6 workaround.
logging.NullHandler is available on all supported Python versions.
In our setuptools integration command, we were attempting to avoid
checking each submodule in the packages list. This was done without
recognizing that two modules may start with the same prefix, e.g.,
- foo
- foo_bar
- foo_biz
In this case, we only ever checked ``foo``. By appending a '.' to the
end of each package name, we avoid this since we only care about
deduplicating submodules, e.g.,
- foo
- foo.sub
- foo.sub.sub
Closes#295