pep8: Fix remaining issues

This commit is contained in:
Jakub Stasiak 2014-11-12 09:05:10 +00:00
parent 0f7fa37af9
commit 9ca2190944
1 changed files with 9 additions and 2 deletions

View File

@ -1,6 +1,13 @@
""" Convenience module for running standard library tests with nose. The standard tests are not especially homogeneous, but they mostly expose a test_main method that does the work of selecting which tests to run based on what is supported by the platform. On its own, Nose would run all possible tests and many would fail; therefore we collect all of the test_main methods here in one module and Nose can run it. Hopefully in the future the standard tests get rewritten to be more nosey.
""" Convenience module for running standard library tests with nose. The standard
tests are not especially homogeneous, but they mostly expose a test_main method that
does the work of selecting which tests to run based on what is supported by the
platform. On its own, Nose would run all possible tests and many would fail; therefore
we collect all of the test_main methods here in one module and Nose can run it.
Many of these tests make connections to external servers, and all.py tries to skip these tests rather than failing them, so you can get some work done on a plane.
Hopefully in the future the standard tests get rewritten to be more nosey.
Many of these tests make connections to external servers, and all.py tries to skip these
tests rather than failing them, so you can get some work done on a plane.
"""
from eventlet import debug