-
-
Notifications
You must be signed in to change notification settings - Fork 182
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
0.3.4: pytest is failing #460
Comments
After add above tree files to --ignore list another 5 units are failing + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.4-4.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.4-4.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra --ignore tests/test_diff.py --ignore tests/test_module.py --ignore tests/test_objects.py
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.13, pytest-7.1.1, pluggy-1.0.0
benchmark: 3.4.1 (defaults: timer=time.perf_counter disable_gc=False min_rounds=5 min_time=0.000005 max_time=1.0 calibration_precision=10 warmup=False warmup_iterations=100000)
rootdir: /home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4
plugins: forked-1.4.0, benchmark-3.4.1, xdist-2.5.0, profiling-1.7.0
collected 70 items
tests/test_check.py ..... [ 7%]
tests/test_classdef.py .F...FF. [ 18%]
tests/test_detect.py ...... [ 27%]
tests/test_extendpickle.py .. [ 30%]
tests/test_fglobals.py .. [ 32%]
tests/test_file.py ... [ 37%]
tests/test_functions.py . [ 38%]
tests/test_functors.py . [ 40%]
tests/test_mixins.py . [ 41%]
tests/test_moduledict.py .... [ 47%]
tests/test_nested.py ........ [ 58%]
tests/test_properties.py ... [ 62%]
tests/test_recursive.py ... [ 67%]
tests/test_restricted.py . [ 68%]
tests/test_selected.py .... [ 74%]
tests/test_source.py ......F.. [ 87%]
tests/test_temp.py ......F [ 97%]
tests/test_weakref.py .. [100%]
================================================================================= FAILURES =================================================================================
____________________________________________________________________________ test_class_objects ____________________________________________________________________________
def test_class_objects():
clslist = [_class,_class2,_newclass,_newclass2,_mclass]
objlist = [o,oc,n,nc,m]
_clslist = [dill.dumps(obj) for obj in clslist]
_objlist = [dill.dumps(obj) for obj in objlist]
for obj in clslist:
globals().pop(obj.__name__)
del clslist
for obj in ['o','oc','n','nc']:
globals().pop(obj)
del objlist
del obj
for obj,cls in zip(_objlist,_clslist):
> _cls = dill.loads(cls)
tests/test_classdef.py:80:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
dill/_dill.py:327: in loads
return load(file, ignore, **kwds)
dill/_dill.py:313: in load
return Unpickler(file, ignore=ignore, **kwds).load()
dill/_dill.py:525: in load
obj = StockUnpickler.load(self)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dill._dill.Unpickler object at 0x7fcbf0614e80>, module = 'tests.test_classdef', name = '_class'
def find_class(self, module, name):
if (module, name) == ('__builtin__', '__main__'):
return self._main.__dict__ #XXX: above set w/save_module_dict
elif (module, name) == ('__builtin__', 'NoneType'):
return type(None) #XXX: special case: NoneType missing
if module == 'dill.dill': module = 'dill._dill'
> return StockUnpickler.find_class(self, module, name)
E AttributeError: Can't get attribute '_class' on <module 'tests.test_classdef' from '/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py'>
dill/_dill.py:515: AttributeError
___________________________________________________________________________ test_array_subclass ____________________________________________________________________________
def test_array_subclass():
try:
import numpy as np
class TestArray(np.ndarray):
def __new__(cls, input_array, color):
obj = np.asarray(input_array).view(cls)
obj.color = color
return obj
def __array_finalize__(self, obj):
if obj is None:
return
if isinstance(obj, type(self)):
self.color = obj.color
def __getnewargs__(self):
return np.asarray(self), self.color
a1 = TestArray(np.zeros(100), color='green')
if dill._dill.PY3 and not dill._dill.IS_PYPY:
> assert dill.pickles(a1)
E assert False
E + where False = <function pickles at 0x7fcd752d41f0>(TestArray([0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,\n 0., 0., 0., 0., 0., 0., 0., 0., ... 0., 0., 0., 0.,\n 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0., 0.,\n 0., 0., 0., 0.]))
E + where <function pickles at 0x7fcd752d41f0> = dill.pickles
tests/test_classdef.py:146: AssertionError
__________________________________________________________________________ test_method_decorator ___________________________________________________________________________
def test_method_decorator():
class A(object):
@classmethod
def test(cls):
pass
a = A()
> res = dill.dumps(a)
tests/test_classdef.py:174:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
dill/_dill.py:304: in dumps
dump(obj, file, protocol, byref, fmode, recurse, **kwds)#, strictio)
dill/_dill.py:276: in dump
Pickler(file, protocol, **_kwds).dump(obj)
dill/_dill.py:498: in dump
StockPickler.dump(self, obj)
/usr/lib64/python3.8/pickle.py:487: in dump
self.save(obj)
/usr/lib64/python3.8/pickle.py:603: in save
self.save_reduce(obj=obj, *rv)
/usr/lib64/python3.8/pickle.py:687: in save_reduce
save(cls)
/usr/lib64/python3.8/pickle.py:560: in save
f(self, obj) # Call unbound method with explicit self
dill/_dill.py:1439: in save_type
StockPickler.save_global(pickler, obj, name=name)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dill._dill.Pickler object at 0x7fcbf064a5b0>, obj = <class 'tests.test_classdef.test_method_decorator.<locals>.A'>, name = 'test_method_decorator.<locals>.A'
def save_global(self, obj, name=None):
write = self.write
memo = self.memo
if name is None:
name = getattr(obj, '__qualname__', None)
if name is None:
name = obj.__name__
module_name = whichmodule(obj, name)
try:
__import__(module_name, level=0)
module = sys.modules[module_name]
obj2, parent = _getattribute(module, name)
except (ImportError, KeyError, AttributeError):
> raise PicklingError(
"Can't pickle %r: it's not found as %s.%s" %
(obj, module_name, name)) from None
E _pickle.PicklingError: Can't pickle <class 'tests.test_classdef.test_method_decorator.<locals>.A'>: it's not found as tests.test_classdef.test_method_decorator.<locals>.A
/usr/lib64/python3.8/pickle.py:1070: PicklingError
_____________________________________________________________________________ test_importable ______________________________________________________________________________
def test_importable():
assert getimportable(add) == 'from %s import add\n' % __name__
assert getimportable(squared) == 'from %s import squared\n' % __name__
assert getimportable(Foo) == 'from %s import Foo\n' % __name__
> assert getimportable(Foo.bar) == 'from %s import bar\n' % __name__
E AssertionError: assert 'from tests import bar\n' == 'from tests.t... import bar\n'
E - from tests.test_source import bar
E ? ------------
E + from tests import bar
tests/test_source.py:112: AssertionError
______________________________________________________________________________ test_the_rest _______________________________________________________________________________
def test_the_rest():
for obj in [Bar, Foo, Foo.bar, _foo.bar]:
pyfile = dumpIO_source(obj, alias='_obj')
> _obj = loadIO_source(pyfile)
tests/test_temp.py:92:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
dill/temp.py:228: in loadIO_source
exec(source, local)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> ???
E ImportError: cannot import name 'bar' from 'tests' (/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/__init__.py)
<string>:1: ImportError
========================================================================= short test summary info ==========================================================================
FAILED tests/test_classdef.py::test_class_objects - AttributeError: Can't get attribute '_class' on <module 'tests.test_classdef' from '/home/tkloczko/rpmbuild/BUILD/dil...
FAILED tests/test_classdef.py::test_array_subclass - assert False
FAILED tests/test_classdef.py::test_method_decorator - _pickle.PicklingError: Can't pickle <class 'tests.test_classdef.test_method_decorator.<locals>.A'>: it's not found...
FAILED tests/test_source.py::test_importable - AssertionError: assert 'from tests import bar\n' == 'from tests.t... import bar\n'
FAILED tests/test_temp.py::test_the_rest - ImportError: cannot import name 'bar' from 'tests' (/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/__init__.py)
======================================================================= 5 failed, 65 passed in 1.77s ======================================================================= |
The primary issue is that I don't use |
This is why I have the tests run as they are listed in |
I would rally encourage you to make your module pytest ready abd tgis framework allows to alter testing without touching tested code (just by install pytetst extension). 😄 [tkloczko@devel-g2v SPECS]$ grep ^%pytest python-* -l | wc -l; ls -1 python-* -l | wc -l
801
909 So more than 8/9 of all packages in test suites are using pytest. |
I understand |
it ti populat because is usefull. + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.4-4.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.4-4.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra --cov --deselect tests/test_classdef.py::test_array_subclass --deselect tests/test_classdef.py::test_class_objects --deselect tests/test_classdef.py::test_method_decorator --deselect tests/test_source.py::test_importable --deselect tests/test_temp.py::test_the_rest --ignore tests/test_diff.py --ignore tests/test_module.py --ignore tests/test_objects.py
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.13, pytest-7.1.2, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4
plugins: anyio-3.5.0, datadir-1.3.1, cov-3.0.0, regressions-2.3.1, mock-3.7.0, forked-1.4.0, xdist-2.5.0, timeout-2.1.0, black-0.3.12
collected 70 items / 5 deselected / 65 selected
tests/test_check.py ..... [ 7%]
tests/test_classdef.py ..... [ 15%]
tests/test_detect.py F..... [ 24%]
tests/test_extendpickle.py .. [ 27%]
tests/test_fglobals.py .. [ 30%]
tests/test_file.py ... [ 35%]
tests/test_functions.py . [ 36%]
tests/test_functors.py . [ 38%]
tests/test_mixins.py . [ 40%]
tests/test_moduledict.py .... [ 46%]
tests/test_nested.py ........ [ 58%]
tests/test_properties.py ... [ 63%]
tests/test_recursive.py ... [ 67%]
tests/test_restricted.py . [ 69%]
tests/test_selected.py .... [ 75%]
tests/test_source.py ........ [ 87%]
tests/test_temp.py ...... [ 96%]
tests/test_weakref.py .. [100%]
================================================================================= FAILURES =================================================================================
_____________________________________________________________________________ test_bad_things ______________________________________________________________________________
def test_bad_things():
f = inspect.currentframe()
assert baditems(f) == [f]
#assert baditems(globals()) == [f] #XXX
assert badobjects(f) is f
assert badtypes(f) == type(f)
assert type(errors(f)) is PicklingError if IS_PYPY2 else TypeError
d = badtypes(f, 1)
assert isinstance(d, dict)
assert list(badobjects(f, 1).keys()) == list(d.keys())
assert list(errors(f, 1).keys()) == list(d.keys())
s = set([(err.__class__.__name__,err.args[0]) for err in list(errors(f, 1).values())])
a = dict(s)
if 0x30602f0 <= sys.hexversion > 0x30612f0: #XXX: travis-ci
> assert len(s) is len(a) # TypeError (and possibly PicklingError)
E assert 2 is 1
E + where 2 = len({('TypeError', "cannot pickle 'coverage.CTracer' object"), ('TypeError', "cannot pickle 'frame' object")})
E + and 1 = len({'TypeError': "cannot pickle 'frame' object"})
tests/test_detect.py:31: AssertionError
---------- coverage: platform linux, python 3.8.13-final-0 -----------
Name Stmts Miss Branch BrPart Cover
----------------------------------------------------
dill/__init__.py 54 20 12 3 62%
dill/_dill.py 1097 416 396 90 58%
dill/_objects.py 415 85 76 31 76%
dill/detect.py 200 75 112 15 59%
dill/objtypes.py 9 0 2 0 100%
dill/pointers.py 60 9 24 6 77%
dill/settings.py 7 2 0 0 71%
dill/source.py 593 226 334 58 57%
dill/temp.py 101 8 16 8 86%
----------------------------------------------------
TOTAL 2536 841 972 211 62%
========================================================================= short test summary info ==========================================================================
FAILED tests/test_detect.py::test_bad_things - assert 2 is 1
================================================================ 1 failed, 64 passed, 5 deselected in 2.11s ================================================================ |
Or + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.4-4.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.4-4.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra --flake8 --deselect tests/test_classdef.py::test_array_subclass --deselect tests/test_classdef.py::test_class_objects --deselect tests/test_classdef.py::test_method_decorator --deselect tests/test_source.py::test_importable --deselect tests/test_temp.py::test_the_rest --ignore tests/test_diff.py --ignore tests/test_module.py --ignore tests/test_objects.py
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.13, pytest-7.1.2, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4
plugins: anyio-3.5.0, datadir-1.3.1, cov-3.0.0, regressions-2.3.1, mock-3.7.0, forked-1.4.0, xdist-2.5.0, timeout-2.1.0, black-0.3.12, flake8-1.1.1
collected 105 items / 5 deselected / 100 selected
setup.py F [ 1%]
dill/__init__.py F [ 2%]
dill/__diff.py F [ 3%]
dill/_dill.py F [ 4%]
dill/_objects.py F [ 5%]
dill/detect.py F [ 6%]
dill/info.py F [ 7%]
dill/objtypes.py F [ 8%]
dill/pointers.py F [ 9%]
dill/settings.py F [ 10%]
dill/source.py F [ 11%]
dill/temp.py F [ 12%]
docs/source/conf.py F [ 13%]
scripts/_get_objgraph.py F [ 14%]
scripts/_undill.py F [ 15%]
tests/__init__.py F [ 16%]
tests/__main__.py F [ 17%]
tests/test_check.py F..... [ 23%]
tests/test_classdef.py F..... [ 29%]
tests/test_detect.py F...... [ 36%]
tests/test_extendpickle.py F.. [ 39%]
tests/test_fglobals.py F.. [ 42%]
tests/test_file.py F... [ 46%]
tests/test_functions.py F. [ 48%]
tests/test_functors.py .. [ 50%]
tests/test_mixins.py F. [ 52%]
tests/test_moduledict.py F.... [ 57%]
tests/test_nested.py F........ [ 66%]
tests/test_properties.py .... [ 70%]
tests/test_recursive.py F... [ 74%]
tests/test_restricted.py F. [ 76%]
tests/test_selected.py F.... [ 81%]
tests/test_source.py F........ [ 90%]
tests/test_temp.py F...... [ 97%]
tests/test_weakref.py F.. [100%]
================================================================================= FAILURES =================================================================================
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:27:1: E115 expected an indented block (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:31:5: F401 'distutils.core.setup' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:38:24: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:39:21: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:59:1: E122 continuation line missing indentation or outdented
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:90:80: E501 line too long (201 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:205:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:300:16: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:300:44: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:307:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:315:46: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:316:48: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:317:50: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:318:46: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:318:61: E202 whitespace before '}'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:322:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:335:80: E501 line too long (101 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:379:4: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:388:5: F401 'ctypes' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:389:5: F401 'readline' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:391:10: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:392:10: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:393:10: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:395:14: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:396:10: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/setup.py:399:12: E225 missing whitespace around operator
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:11:5: F401 '.info.this_version as __version__' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.dump' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.dumps' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.load' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.loads' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.dump_session' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.load_session' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.Pickler' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.Unpickler' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.register' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.copy' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.pickle' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.pickles' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.check' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.HIGHEST_PROTOCOL' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.DEFAULT_PROTOCOL' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.PicklingError' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.UnpicklingError' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.HANDLE_FMODE' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.CONTENTS_FMODE' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:25:1: F401 '._dill.FILE_FMODE' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:29:1: F401 '.source' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:29:1: F401 '.temp' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:32:1: F401 '.settings.settings' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:55:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:56:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:57:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:60:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:62:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:82:25: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:86:25: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:90:69: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:91:30: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:95:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:109:16: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:110:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:113:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:115:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:117:10: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:120:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:122:10: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__init__.py:125:1: E305 expected 2 blank lines after class or function definition, found 1
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:19:1: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:27:51: E231 missing whitespace after ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:37:14: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:49:5: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:76:8: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:77:8: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:101:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:107:32: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:108:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:108:37: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:126:17: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:132:22: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:132:23: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:182:28: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:217:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/__diff.py:232:1: E305 expected 2 blank lines after class or function definition, found 1
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:18:18: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:18:26: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:18:33: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:18:41: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:18:56: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:19:21: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:19:33: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:19:44: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:19:51: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:19:60: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:20:19: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:20:38: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:20:57: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:21:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:21:44: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:21:61: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:26:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:28:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:29:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:32:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:34:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:35:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:43:8: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:43:9: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:51:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:51:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:54:28: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:54:29: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:55:21: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:57:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:57:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:60:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:71:5: F401 'types.TracebackType' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:71:5: F401 'types.FrameType' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:71:5: F401 'types.BufferType' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:72:10: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:73:10: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:74:10: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:75:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:80:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:81:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:82:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:84:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:85:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:86:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:92:5: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:130:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:135:1: E305 expected 2 blank lines after class or function definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:135:19: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:138:25: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:139:13: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:141:27: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:142:33: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:145:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:145:44: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:146:25: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:148:19: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:150:44: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:152:62: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:154:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:156:25: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:157:13: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:159:27: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:160:33: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:163:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:163:44: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:164:25: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:194:80: E501 line too long (84 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:197:31: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:202:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:209:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:221:80: E501 line too long (97 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:231:5: F401 'socket.socket as SocketType' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:232:9: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:232:10: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:237:24: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:241:8: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:241:31: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:242:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:245:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:256:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:257:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:266:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:266:80: E501 line too long (99 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:266:82: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:266:82: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:279:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:279:77: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:279:77: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:279:80: E501 line too long (94 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:304:61: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:304:61: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:307:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:315:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:337:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:339:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:340:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:352:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:352:52: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:352:53: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:358:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:378:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:385:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:386:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:390:20: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:399:34: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:401:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:409:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:411:20: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:416:9: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:416:10: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:429:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:431:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:445:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:455:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:455:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:462:31: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:462:32: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:466:25: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:466:26: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:474:80: E501 line too long (83 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:487:53: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:490:54: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:490:59: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:490:65: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:490:80: E501 line too long (82 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:495:80: E501 line too long (95 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:504:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:511:39: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:511:40: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:513:30: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:513:31: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:514:33: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:524:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:524:21: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:526:80: E501 line too long (81 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:529:20: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:530:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:530:50: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:530:56: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:531:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:531:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:531:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:536:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:544:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:549:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:556:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:564:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:577:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:581:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:584:55: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:592:9: E122 continuation line missing indentation or outdented
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:595:1: E305 expected 2 blank lines after class or function definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:629:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:632:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:635:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:638:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:642:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:644:32: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:644:33: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:653:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:654:44: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:654:45: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:656:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:657:39: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:659:27: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:660:29: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:663:27: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:664:29: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:666:23: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:667:25: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:670:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:677:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:677:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:677:34: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:685:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:685:40: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:685:41: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:694:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:694:80: E501 line too long (97 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:694:84: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:695:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:698:23: E231 missing whitespace after ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:698:49: E231 missing whitespace after ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:699:24: E231 missing whitespace after ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:699:40: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:699:41: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:701:24: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:701:25: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:713:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:717:80: E501 line too long (91 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:719:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:720:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:732:13: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:739:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:743:16: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:759:21: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:770:21: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:772:80: E501 line too long (81 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:773:80: E501 line too long (91 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:786:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:788:14: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:789:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:792:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:794:14: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:796:8: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:797:8: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:800:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:803:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:807:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:811:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:821:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:828:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:830:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:838:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:840:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:841:20: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:841:43: E231 missing whitespace after ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:849:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:852:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:853:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:853:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:856:27: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:860:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:869:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:871:9: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:871:10: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:874:5: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:880:40: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:881:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:882:36: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:885:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:889:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:890:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:896:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:910:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:911:45: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:916:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:917:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:927:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:939:9: E122 continuation line missing indentation or outdented
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:947:9: E122 continuation line missing indentation or outdented
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:960:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:962:80: E501 line too long (96 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:963:70: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:969:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:970:70: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:974:54: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:977:5: E122 continuation line missing indentation or outdented
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:978:5: E122 continuation line missing indentation or outdented
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:978:54: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:979:70: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:986:70: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:994:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:995:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:995:34: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:996:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:996:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:997:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:997:38: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:997:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1001:40: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1001:40: E116 unexpected indentation (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1001:40: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1001:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1010:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1017:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1020:23: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1022:80: E501 line too long (90 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1023:46: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1027:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1028:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1035:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1044:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1054:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1074:18: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1081:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1081:21: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1092:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1097:5: F811 redefinition of unused 'save_file' from line 1086
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1112:23: E702 multiple statements on one line (semicolon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1114:35: E702 multiple statements on one line (semicolon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1115:64: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1124:23: E702 multiple statements on one line (semicolon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1126:35: E702 multiple statements on one line (semicolon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1127:64: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1132:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1140:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1147:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1172:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1172:22: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1172:23: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1173:40: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1174:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1174:30: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1183:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1223:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1231:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1247:12: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1247:12: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1248:80: E501 line too long (83 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1249:13: E122 continuation line missing indentation or outdented
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1250:64: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1250:76: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1250:80: E501 line too long (84 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1254:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1256:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1263:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1272:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1272:24: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1275:8: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1276:27: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1278:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1278:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1279:9: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1281:23: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1287:38: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1293:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1295:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1295:35: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1297:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1303:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1305:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1307:8: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1312:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1316:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1316:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1321:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1331:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1331:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1332:38: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1333:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1338:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1340:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1340:15: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1363:80: E501 line too long (91 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1365:80: E501 line too long (86 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1370:80: E501 line too long (88 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1372:45: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1372:46: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1372:80: E501 line too long (82 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1385:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1387:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1387:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1387:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1392:80: E501 line too long (115 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1392:83: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1392:93: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1392:101: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1395:80: E501 line too long (131 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1400:9: E115 expected an indented block (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1402:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1409:80: E501 line too long (83 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1417:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1417:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1418:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1418:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1419:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1419:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1426:14: E721 do not compare types, use 'isinstance()'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1435:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1435:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1436:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1436:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1437:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1437:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1443:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1450:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1460:52: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1464:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1466:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1466:35: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1473:12: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1473:12: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1474:12: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1474:12: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1475:12: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1476:12: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1478:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1485:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1485:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1488:13: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1489:54: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1489:65: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1489:80: E501 line too long (94 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1490:22: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1491:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1498:55: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1498:66: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1498:80: E501 line too long (135 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1499:22: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1500:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1505:18: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1506:17: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1507:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1507:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1508:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1508:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1509:9: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1510:80: E501 line too long (135 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1510:114: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1511:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1511:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1512:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1513:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1514:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1524:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1524:16: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1524:28: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1524:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1536:12: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1536:39: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1538:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1541:9: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1543:13: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1543:80: E501 line too long (109 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1547:18: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1550:22: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1552:54: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1552:55: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1557:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1567:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1568:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1569:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1570:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1586:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1593:58: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1593:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1599:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1605:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1608:10: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1611:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1611:16: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1611:17: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1613:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_dill.py:1616:1: E305 expected 2 blank lines after class or function definition, found 1
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:13:24: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:13:35: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:16:16: E702 multiple statements on one line (semicolon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:24:5: F401 'anydbm' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:25:16: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:26:17: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:28:35: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:29:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:34:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:35:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:36:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:37:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:38:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:39:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:40:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:41:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:42:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:43:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:44:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:45:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:46:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:47:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:48:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:49:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:50:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:51:1: F401 'zipfile' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:51:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:52:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:53:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:54:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:55:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:56:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:57:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:58:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:59:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:60:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:61:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:62:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:63:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:67:11: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:68:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:70:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:73:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:74:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:76:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:83:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:88:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:97:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:100:1: E305 expected 2 blank lines after class or function definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:101:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:110:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:112:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:113:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:114:8: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:115:5: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:119:1: E305 expected 2 blank lines after class or function definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:122:49: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:122:80: E501 line too long (83 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:123:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:145:59: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:164:21: F821 undefined name 'long'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:165:24: F821 undefined name 'unicode'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:169:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:170:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:195:41: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:196:35: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:197:50: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:198:59: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:199:53: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:199:60: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:200:43: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:203:39: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:221:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:222:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:223:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:224:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:226:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:228:5: F401 'number' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:235:23: F821 undefined name 'numbers'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:241:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:242:54: F821 undefined name '_logger'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:242:61: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:242:68: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:248:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:256:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:257:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:263:27: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:263:30: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:269:50: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:269:51: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:269:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:273:45: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:273:46: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:277:40: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:277:41: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:278:45: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:279:50: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:280:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:282:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:296:33: F821 undefined name 'xrange'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:301:80: E501 line too long (83 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:303:19: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:305:6: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:313:8: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:315:6: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:330:41: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:332:28: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:334:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:335:37: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:339:7: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:340:5: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:349:51: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:349:52: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:352:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:353:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:354:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:355:47: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:363:61: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:363:62: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:363:80: E501 line too long (91 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:364:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:367:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:367:49: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:368:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:368:50: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:378:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:379:24: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:384:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:393:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:395:45: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:397:59: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:397:60: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:397:80: E501 line too long (89 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:398:80: E501 line too long (83 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:399:72: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:403:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:405:41: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:417:52: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:420:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:421:23: E225 missing whitespace around operator
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:421:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:422:40: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:424:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:424:49: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:426:38: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:426:39: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:428:31: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:428:32: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:430:50: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:430:51: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:432:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:432:50: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:433:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:435:56: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:435:57: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:436:55: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:436:58: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:436:59: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:439:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:441:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:441:43: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:442:47: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:442:52: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:442:53: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:443:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:449:47: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:449:48: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:450:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:450:38: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:451:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:451:38: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:451:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:455:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:455:35: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:470:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:470:49: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:474:38: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:484:47: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:492:14: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:493:5: E116 unexpected indentation (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:493:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:494:5: E116 unexpected indentation (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:494:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:495:5: E116 unexpected indentation (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:495:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:514:48: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:514:49: E231 missing whitespace after ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:518:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:520:57: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:523:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:525:38: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:526:50: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:528:43: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:529:41: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:530:45: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:532:47: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:533:45: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:534:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:537:80: E501 line too long (87 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:538:80: E501 line too long (86 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:541:5: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:542:66: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:543:38: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:543:39: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:546:8: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:549:23: F821 undefined name 'buffer'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:552:12: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/_objects.py:554:27: E261 at least two spaces before inline comment
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:14:1: F401 '.pointers.parent' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:14:1: F401 '.pointers.reference' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:14:1: F401 '.pointers.at' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:14:1: F401 '.pointers.parents' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:14:1: F401 '.pointers.children' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:19:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:19:35: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:19:46: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:19:53: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:19:62: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:20:23: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:20:36: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:20:49: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:20:65: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:21:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:21:46: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:21:54: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:23:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:27:27: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:28:11: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:29:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:35:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:35:21: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:46:19: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:46:20: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:54:19: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:54:20: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:58:8: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:58:15: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:59:5: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:59:12: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:59:13: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:60:14: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:60:24: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:63:21: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:63:36: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:65:13: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:65:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:65:30: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:67:45: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:67:51: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:68:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:68:16: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:68:17: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:70:11: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:70:12: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:72:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:72:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:72:37: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:75:24: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:75:35: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:75:36: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:78:22: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:82:23: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:85:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:96:22: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:97:24: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:98:25: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:99:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:100:20: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:103:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:104:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:104:40: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:104:41: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:116:27: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:126:41: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:127:44: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:129:48: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:131:52: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:133:55: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:154:22: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:157:52: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:160:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:160:49: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:160:64: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:163:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:166:20: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:170:22: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:170:23: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:180:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:184:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:198:22: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:205:31: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:205:32: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:215:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:215:37: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:218:20: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:218:20: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:219:31: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:223:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:223:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:225:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:227:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:230:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:230:37: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:232:20: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:232:20: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:233:31: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:238:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:239:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:248:18: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:248:19: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:252:44: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:252:45: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:254:23: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:254:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:255:43: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:255:45: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:255:51: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:256:38: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:256:47: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:257:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:258:30: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:258:32: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:258:38: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:266:23: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:266:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:266:35: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:268:47: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:268:53: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:268:61: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:268:67: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:268:75: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:269:12: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:269:59: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:269:65: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:269:71: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:271:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:275:23: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:275:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:275:35: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:277:45: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:277:51: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:277:59: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:277:65: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:277:73: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:278:12: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:278:59: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:278:65: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:278:71: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:280:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:288:66: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:290:68: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:298:32: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:303:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:303:35: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:304:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:304:47: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/detect.py:304:53: E231 missing whitespace after ','
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/info.py:35:80: E501 line too long (201 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/info.py:150:80: E501 line too long (80 > 79 characters)
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/objtypes.py:18:45: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/objtypes.py:19:1: W293 blank line contains whitespace
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:17:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:29:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:29:15: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:37:47: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:37:48: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:44:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:45:5: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:45:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:46:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:46:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:50:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:54:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:54:49: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:67:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:68:5: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:68:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:69:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:69:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:73:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:94:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/pointers.py:115:17: E261 at least two spaces before inline comment
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:18:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:19:5: E131 continuation line unaligned for hanging indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:19:15: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:20:12: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:21:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:22:12: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:22:17: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:22:18: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:23:14: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:24:13: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/settings.py:28:1: W391 blank line at end of file
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:15:61: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:21:1: F822 undefined name '_wrap' in __all__
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:21:78: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:22:73: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:23:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:45:8: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:46:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:46:34: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:56:5: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:56:19: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:58:8: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:58:35: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:58:56: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:58:57: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:59:9: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:59:10: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:60:41: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:60:57: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:61:5: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:61:11: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:66:15: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:68:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:71:19: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:71:35: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:75:26: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:75:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:77:26: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:77:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:80:13: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:80:40: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:80:57: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:80:60: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:80:61: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:80:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:81:13: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:81:14: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:82:47: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:82:64: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:83:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:83:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:86:31: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:87:9: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:88:19: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:88:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:88:41: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:89:23: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:89:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:89:38: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:92:28: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:92:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:92:43: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:94:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:97:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:98:73: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:98:80: E501 line too long (81 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:99:75: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:99:80: E501 line too long (84 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:116:8: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:117:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:117:34: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:120:13: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:123:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:131:68: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:133:13: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:134:62: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:135:39: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:137:18: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:140:44: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:156:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:160:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:166:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:167:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:168:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:169:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:174:25: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:174:26: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:175:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:176:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:177:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:187:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:188:24: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:192:32: E702 multiple statements on one line (semicolon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:193:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:193:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:194:24: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:194:25: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:197:29: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:197:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:198:39: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:199:47: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:200:22: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:201:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:203:50: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:203:53: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:204:56: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:205:33: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:211:9: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:212:58: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:213:38: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:213:39: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:214:13: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:215:26: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:223:36: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:223:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:254:18: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:257:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:259:35: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:259:36: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:262:18: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:265:50: E702 multiple statements on one line (semicolon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:266:22: E702 multiple statements on one line (semicolon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:267:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:267:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:268:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:273:16: E702 multiple statements on one line (semicolon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:275:24: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:275:25: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:279:20: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:280:34: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:281:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:281:50: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:284:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:285:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:292:16: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:293:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:295:35: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:296:41: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:301:20: E225 missing whitespace around operator
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:307:14: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:325:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:329:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:330:64: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:331:47: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:353:9: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:355:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:356:22: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:358:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:359:28: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:364:29: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:366:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:366:15: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:367:28: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:371:37: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:373:18: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:373:19: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:374:80: E501 line too long (106 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:374:85: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:374:92: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:374:97: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:383:17: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:383:18: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:384:31: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:385:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:385:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:386:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:387:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:388:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:389:13: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:391:20: F841 local variable 'lnum' is assigned to but never used
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:392:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:392:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:398:31: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:399:44: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:401:13: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:402:56: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:405:43: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:408:18: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:411:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:424:26: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:424:37: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:424:61: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:424:73: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:426:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:436:80: E501 line too long (96 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:438:24: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:439:50: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:439:51: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:441:65: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:441:80: E501 line too long (124 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:443:16: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:450:21: E721 do not compare types, use 'isinstance()'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:452:28: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:456:23: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:456:24: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:458:11: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:459:31: F821 undefined name 'basestring'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:464:30: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:465:27: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:467:5: F841 local variable 'nspaces' is assigned to but never used
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:470:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:471:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:473:9: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:475:28: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:477:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:478:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:479:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:480:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:481:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:482:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:483:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:484:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:485:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:486:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:487:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:488:31: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:494:34: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:495:55: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:497:9: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:499:28: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:500:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:504:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:506:30: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:507:55: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:508:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:509:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:513:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:514:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:552:32: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:552:33: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:554:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:560:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:562:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:562:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:578:45: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:578:46: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:580:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:580:21: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:584:1: W293 blank line contains whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:588:10: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:588:11: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:590:38: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:592:80: E501 line too long (93 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:592:89: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:594:73: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:595:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:595:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:605:16: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:605:17: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:608:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:608:43: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:608:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:610:11: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:612:19: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:613:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:616:9: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:620:44: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:622:42: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:623:34: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:625:27: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:625:28: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:626:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:628:33: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:645:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:646:9: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:646:10: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:652:44: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:654:33: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:654:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:655:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:656:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:656:30: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:657:5: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:657:11: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:659:26: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:659:32: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:659:38: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:659:46: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:664:8: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:665:22: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:665:28: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:667:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:669:34: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:670:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:670:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:670:49: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:675:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:689:25: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:693:27: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:695:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:696:26: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:699:29: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:701:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:701:19: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:703:16: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:704:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:706:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:711:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:712:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:712:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:713:12: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:713:24: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:713:25: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:714:28: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:714:29: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:715:36: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:715:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:715:43: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:716:25: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:722:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:723:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:742:9: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:743:35: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:743:51: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:744:20: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:745:5: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:745:12: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:746:31: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:747:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:747:30: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:750:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:750:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:751:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:751:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:752:13: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:753:12: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:754:27: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:756:35: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:758:33: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:760:17: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:762:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:762:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:763:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:763:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:766:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:768:31: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:770:29: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:772:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:775:74: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:776:47: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:799:15: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:801:63: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:803:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:803:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:806:63: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:807:35: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:809:55: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:810:34: E127 continuation line over-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:815:25: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:818:5: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:818:11: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:819:19: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:821:63: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:823:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:823:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:826:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:832:20: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:834:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:835:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:837:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:844:13: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:845:31: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:849:41: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:851:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:856:13: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:857:18: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:858:78: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:862:17: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:862:76: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:863:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:864:53: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:866:34: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:868:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:874:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:875:45: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:875:46: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:878:18: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:880:78: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:882:34: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:884:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:889:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:890:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:893:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:901:13: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:908:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:910:45: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:910:46: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:911:34: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:911:46: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:911:46: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:913:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:914:14: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:914:15: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:916:55: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:917:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:920:22: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:920:23: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:922:25: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:924:26: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:929:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:945:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:946:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:953:23: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:955:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:956:80: E501 line too long (81 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:963:13: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:964:32: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:972:13: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:974:42: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:975:30: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:976:31: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:977:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:985:23: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:995:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:995:35: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:996:38: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:996:43: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:996:65: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:996:80: E501 line too long (109 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:999:23: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1000:23: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1002:9: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1003:28: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1012:26: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1012:32: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1012:52: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1013:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1013:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1014:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1016:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1018:1: E305 expected 2 blank lines after class or function definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/source.py:1023:1: E303 too many blank lines (3)
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:12:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:13:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:15:61: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:16:61: E502 the backslash is redundant between brackets
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:29:8: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:47:10: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:51:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:66:40: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:66:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:79:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:101:1: W293 blank line contains whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:104:1: W293 blank line contains whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:110:8: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:110:9: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:113:27: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:114:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:114:35: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:117:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:119:58: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:123:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:135:39: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:138:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:149:1: W293 blank line contains whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:152:1: W293 blank line contains whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:155:1: W293 blank line contains whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:169:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:183:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:184:23: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:184:40: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:187:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:205:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:218:49: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:219:24: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:219:43: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:220:11: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:220:37: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:232:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:250:34: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:250:35: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:253:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/dill/temp.py:255:58: E231 missing whitespace after ','
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:27:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:28:1: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:32:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:44:5: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:45:5: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:46:5: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:47:5: E128 continuation line under-indented for visual indent
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:69:18: E225 missing whitespace around operator
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:117:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:117:30: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:118:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:118:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:119:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:119:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:120:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:120:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:134:1: E122 continuation line missing indentation or outdented
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:148:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:152:1: E122 continuation line missing indentation or outdented
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:153:25: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:154:26: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:156:23: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:159:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:228:1: E303 too many blank lines (4)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/docs/source/conf.py:239:1: W391 blank line at end of file
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_get_objgraph.py:23:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_get_objgraph.py:24:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_get_objgraph.py:28:27: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_get_objgraph.py:29:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_get_objgraph.py:34:14: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_get_objgraph.py:38:14: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_get_objgraph.py:44:43: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_get_objgraph.py:51:18: E211 whitespace before '('
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_undill.py:21:14: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_undill.py:21:35: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/scripts/_undill.py:22:1: W391 blank line at end of file
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/__init__.py:21:14: W291 trailing whitespace
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/__main__.py:31:1: W391 blank line at end of file
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_check.py:13:1: F401 'dill._dill.PY3' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_check.py:16:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_check.py:30:1: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_check.py:30:13: E231 missing whitespace after ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_check.py:53:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_check.py:54:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_check.py:55:1: E265 block comment should start with '# '
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:14:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:17:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:20:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:23:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:26:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:29:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:32:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:35:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:38:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:41:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:43:1: E302 expected 2 blank lines, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:46:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:58:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:65:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:66:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:66:30: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:66:40: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:66:51: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:67:17: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:67:20: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:67:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:67:25: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:74:20: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:74:25: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:74:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:79:12: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:79:32: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:88:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:91:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:93:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:94:13: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:95:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:98:29: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:98:30: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:99:13: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:100:38: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:101:17: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:106:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:115:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:118:1: W293 blank line contains whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:124:23: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:136:13: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:141:13: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:157:27: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:157:29: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:157:31: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:157:33: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:163:23: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:168:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:169:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:179:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:180:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:181:3: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:181:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:184:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_classdef.py:187:1: E302 expected 2 blank lines, found 1
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:9:80: E501 line too long (86 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:17:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:20:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:28:37: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:28:80: E501 line too long (90 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:30:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:30:49: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:31:32: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:35:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:36:11: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:36:13: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:36:15: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:41:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:42:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:42:43: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:45:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:47:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:48:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:50:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:51:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:53:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:55:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:58:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:61:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:64:9: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:66:13: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:83:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:84:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:85:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:86:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:87:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:88:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:89:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:90:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:93:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:96:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:99:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:102:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:105:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:107:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:108:5: F401 'dill.loads' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:111:36: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:113:35: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:116:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:117:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:120:5: F401 'math.pi' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:130:25: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:148:20: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_detect.py:149:26: W291 trailing whitespace
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_extendpickle.py:21:5: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_extendpickle.py:21:17: E203 whitespace before ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_extendpickle.py:50:5: E722 do not use bare 'except'
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_fglobals.py:4:1: E302 expected 2 blank lines, found 1
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:25:80: E501 line too long (82 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:69:48: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:69:48: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:80:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:80:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:84:30: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:84:31: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:114:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:114:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:144:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:144:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:182:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:182:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:223:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:223:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:264:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:264:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:303:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:303:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:339:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:339:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:374:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:374:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:409:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:409:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:448:42: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:448:42: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:494:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:495:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_file.py:496:1: E265 block comment should start with '# '
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_functions.py:44:39: E231 missing whitespace after ','
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:13:10: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:13:12: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:14:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:16:3: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:16:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:18:3: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:18:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:20:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:20:13: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:24:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:25:3: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:25:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:27:3: E306 expected 1 blank line before a nested definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:27:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:29:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:30:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:30:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:31:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:36:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:39:10: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:41:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:44:12: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:44:14: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:47:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:48:21: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:48:25: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:49:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:50:19: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:51:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:51:19: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:52:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:54:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:57:18: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:57:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:59:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:66:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:69:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:74:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:78:3: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:79:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:79:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:79:24: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:80:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:81:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:81:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:81:24: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:83:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:84:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:84:14: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:84:16: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:85:2: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:85:2: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:86:2: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:86:2: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:88:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:88:26: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:88:28: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:90:3: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:91:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:92:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:94:3: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:95:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:96:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:97:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:97:80: E501 line too long (113 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:98:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:98:80: E501 line too long (99 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:99:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:99:80: E501 line too long (86 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:100:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:100:80: E501 line too long (90 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:101:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:101:80: E501 line too long (90 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:102:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:102:80: E501 line too long (92 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:103:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:103:80: E501 line too long (203 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:104:3: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:104:3: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:105:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:106:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:106:4: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:106:6: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:106:8: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:106:10: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:106:37: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:107:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:107:80: E501 line too long (250 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:108:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:108:16: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:108:18: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:109:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:110:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:110:4: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:110:6: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:110:8: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:110:35: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:111:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:111:80: E501 line too long (135 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:112:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:112:16: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:112:18: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:113:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:114:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:114:4: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:114:6: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:114:8: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:114:10: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:114:12: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:114:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:115:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:115:80: E501 line too long (430 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:116:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:116:16: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:116:18: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:116:20: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:116:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:117:3: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_mixins.py:117:3: E265 block comment should start with '# '
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:12:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:13:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:15:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:17:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:21:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:22:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:25:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:26:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:29:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:33:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:36:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:37:5: F841 local variable 'serialized' is assigned to but never used
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:40:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:46:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_moduledict.py:47:1: E302 expected 2 blank lines, found 1
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_nested.py:64:31: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_nested.py:64:32: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_nested.py:75:5: F841 local variable '_pbasic2' is assigned to but never used
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_nested.py:77:5: F841 local variable '_pbasic' is assigned to but never used
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_nested.py:105:32: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_nested.py:105:33: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_nested.py:113:5: E722 do not use bare 'except'
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:10:1: F401 'dill._dill.PY3' imported but unused
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:13:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:17:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:21:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:23:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:30:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:30:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:35:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:35:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:40:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:40:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:47:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:53:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:58:1: E303 too many blank lines (3)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:69:5: E301 expected 1 blank line, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:76:9: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:82:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:82:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:83:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:88:1: E303 too many blank lines (3)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_recursive.py:89:5: E265 block comment should start with '# '
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_restricted.py:11:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_restricted.py:17:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_restricted.py:19:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_restricted.py:20:5: F841 local variable 'a' is assigned to but never used
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_restricted.py:22:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_restricted.py:23:5: F841 local variable 'deserialized' is assigned to but never used
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:17:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:18:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:19:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:19:8: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:20:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:20:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:22:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:22:4: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:23:4: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:24:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:24:22: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:26:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:26:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:26:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:28:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:28:19: E703 statement ends with a semicolon
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:30:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:31:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:31:6: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:32:3: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:32:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:37:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:38:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:41:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:41:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:42:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:43:27: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:48:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:49:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:50:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:52:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:52:22: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:54:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:54:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:54:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:55:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:56:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:58:15: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:58:22: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:60:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:60:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:60:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:63:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:64:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:65:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:66:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:67:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:67:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:67:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:68:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:69:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:70:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:70:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:70:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:71:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:72:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:72:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:72:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:75:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:76:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:77:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:78:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:78:4: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:79:3: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:79:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:80:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:81:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:81:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:81:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:82:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:82:21: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:82:22: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:83:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:84:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:84:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:84:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:85:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:85:21: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:85:22: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:86:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:87:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:87:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:87:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:88:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:88:16: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:88:17: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:89:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:90:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:90:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:90:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:91:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:92:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:92:13: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:92:20: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:96:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:97:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:98:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_selected.py:99:3: E111 indentation is not a multiple of 4
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:18:1: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:21:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:22:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:23:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:25:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:26:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:28:1: E305 expected 2 blank lines after class or function definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:30:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:30:10: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:31:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:34:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:34:1: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:34:19: E231 missing whitespace after ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:36:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:37:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:38:1: E305 expected 2 blank lines after class or function definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:40:24: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:40:24: E116 unexpected indentation (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:41:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:42:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:43:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:44:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:45:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:46:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:47:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:48:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:49:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:50:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:52:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:53:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:54:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:55:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:55:80: E501 line too long (88 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:56:3: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:56:3: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:59:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:60:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:60:38: E225 missing whitespace around operator
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:60:80: E501 line too long (80 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:63:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:64:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:64:9: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:65:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:65:7: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:66:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:67:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:68:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:69:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:70:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:71:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:71:80: E501 line too long (101 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:72:3: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:73:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:74:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:79:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:80:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:83:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:84:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:85:3: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:86:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:89:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:90:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:90:7: E261 at least two spaces before inline comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:90:8: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:94:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:97:80: E501 line too long (88 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:98:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:100:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:101:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:102:3: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:103:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:104:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:109:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:110:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:111:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:112:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:113:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:114:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:115:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:117:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:118:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:119:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:120:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:121:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:121:80: E501 line too long (106 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:122:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:122:80: E501 line too long (86 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:123:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:123:80: E501 line too long (81 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:124:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:124:80: E501 line too long (103 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:125:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:125:80: E501 line too long (99 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:126:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:126:80: E501 line too long (107 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:127:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:127:80: E501 line too long (97 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:128:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:128:80: E501 line too long (104 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:129:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:130:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:131:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:132:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:132:80: E501 line too long (87 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:133:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:134:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:134:80: E501 line too long (83 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:135:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:135:80: E501 line too long (84 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:136:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:137:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:141:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:143:17: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:143:19: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:146:80: E501 line too long (90 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:147:80: E501 line too long (92 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:148:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:148:21: E701 multiple statements on one line (colon)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:150:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:151:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:152:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:152:80: E501 line too long (140 > 79 characters)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_source.py:154:1: E305 expected 2 blank lines after class or function definition, found 1
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:15:1: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:16:7: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:16:9: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:16:11: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:16:13: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:19:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:20:22: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:26:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:32:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:33:22: E262 inline comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:39:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:44:1: E266 too many leading '#' for block comment
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:45:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:45:1: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:48:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:49:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:50:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:50:18: W291 trailing whitespace
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:52:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:53:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:55:1: E305 expected 2 blank lines after class or function definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:57:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:57:10: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:58:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:61:1: E305 expected 2 blank lines after class or function definition, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:61:1: E731 do not assign a lambda expression, use a def
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:61:19: E231 missing whitespace after ':'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:63:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:64:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:65:1: E305 expected 2 blank lines after class or function definition, found 0
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:70:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:73:18: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:73:30: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:76:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:77:3: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:83:1: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:89:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_temp.py:90:3: E111 indentation is not a multiple of 4
_______________________________________________________________________________ FLAKE8-check _______________________________________________________________________________
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:11:1: E402 module level import not at top of file
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:13:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:17:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:21:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:25:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:29:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:39:5: F841 local variable 'z' is assigned to but never used
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:58:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:59:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:17: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:20: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:22: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:25: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:28: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:34: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:37: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:39: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:45: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:48: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:50: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:63:57: E231 missing whitespace after ','
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:64:5: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:67:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:68:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:69:14: E211 whitespace before '('
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:70:8: E114 indentation is not a multiple of 4 (comment)
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:70:8: E265 block comment should start with '# '
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:73:7: E111 indentation is not a multiple of 4
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:75:1: E302 expected 2 blank lines, found 1
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:79:5: E722 do not use bare 'except'
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.4/tests/test_weakref.py:81:22: W291 trailing whitespace
========================================================================= short test summary info ==========================================================================
FAILED setup.py::flake-8::FLAKE8
FAILED dill/__init__.py::flake-8::FLAKE8
FAILED dill/__diff.py::flake-8::FLAKE8
FAILED dill/_dill.py::flake-8::FLAKE8
FAILED dill/_objects.py::flake-8::FLAKE8
FAILED dill/detect.py::flake-8::FLAKE8
FAILED dill/info.py::flake-8::FLAKE8
FAILED dill/objtypes.py::flake-8::FLAKE8
FAILED dill/pointers.py::flake-8::FLAKE8
FAILED dill/settings.py::flake-8::FLAKE8
FAILED dill/source.py::flake-8::FLAKE8
FAILED dill/temp.py::flake-8::FLAKE8
FAILED docs/source/conf.py::flake-8::FLAKE8
FAILED scripts/_get_objgraph.py::flake-8::FLAKE8
FAILED scripts/_undill.py::flake-8::FLAKE8
FAILED tests/__init__.py::flake-8::FLAKE8
FAILED tests/__main__.py::flake-8::FLAKE8
FAILED tests/test_check.py::flake-8::FLAKE8
FAILED tests/test_classdef.py::flake-8::FLAKE8
FAILED tests/test_detect.py::flake-8::FLAKE8
FAILED tests/test_extendpickle.py::flake-8::FLAKE8
FAILED tests/test_fglobals.py::flake-8::FLAKE8
FAILED tests/test_file.py::flake-8::FLAKE8
FAILED tests/test_functions.py::flake-8::FLAKE8
FAILED tests/test_mixins.py::flake-8::FLAKE8
FAILED tests/test_moduledict.py::flake-8::FLAKE8
FAILED tests/test_nested.py::flake-8::FLAKE8
FAILED tests/test_recursive.py::flake-8::FLAKE8
FAILED tests/test_restricted.py::flake-8::FLAKE8
FAILED tests/test_selected.py::flake-8::FLAKE8
FAILED tests/test_source.py::flake-8::FLAKE8
FAILED tests/test_temp.py::flake-8::FLAKE8
FAILED tests/test_weakref.py::flake-8::FLAKE8
=============================================================== 33 failed, 67 passed, 5 deselected in 5.81s ================================================================ |
|
Thanks. I realize that |
Just tested 0.3.5 and looks like now is a bit better. + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.5-4.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.5-4.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.13, pytest-7.1.2, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.5
collected 78 items / 4 errors
================================================================================== ERRORS ==================================================================================
___________________________________________________________________ ERROR collecting tests/test_diff.py ____________________________________________________________________
tests/test_diff.py:9: in <module>
from dill import __diff as diff
dill/__diff.py:238: in <module>
for mod in sys.modules.values():
E RuntimeError: dictionary changed size during iteration
__________________________________________________________________ ERROR collecting tests/test_module.py ___________________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.5/tests/test_module.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib64/python3.8/importlib/__init__.py:127: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
tests/test_module.py:11: in <module>
import test_mixins as module
dill/__diff.py:226: in _imp
mod = __import__(*args, **kwds)
E ModuleNotFoundError: No module named 'test_mixins'
__________________________________________________________________ ERROR collecting tests/test_objects.py __________________________________________________________________
tests/test_objects.py:20: in <module>
load_types(pickleable=True,unpickleable=False)
dill/__init__.py:341: in load_types
from . import _objects
dill/__diff.py:229: in _imp
memorise(sys.modules[m])
dill/__diff.py:117: in memorise
[mem(value) for key, value in g.items()]
dill/__diff.py:117: in <listcomp>
[mem(value) for key, value in g.items()]
dill/__diff.py:121: in memorise
[(mem(key), mem(item))
dill/__diff.py:121: in <listcomp>
[(mem(key), mem(item))
dill/__diff.py:103: in memorise
s = get_seq(obj)
dill/__diff.py:61: in get_seq
o_type = obj.__class__
E ReferenceError: weakly-referenced object no longer exists
__________________________________________________________________ ERROR collecting tests/test_session.py __________________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.5/tests/test_session.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib64/python3.8/importlib/__init__.py:127: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
tests/test_session.py:70: in <module>
import test_dictviews as local_mod # non-builtin top-level module
dill/__diff.py:226: in _imp
mod = __import__(*args, **kwds)
E ModuleNotFoundError: No module named 'test_dictviews'
============================================================================= warnings summary =============================================================================
dill/__diff.py:75
/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.5/dill/__diff.py:75: PyStdIsDeprecatedWarning: py.std is deprecated, please import __contains__ directly
elif hsattr(obj, "__contains__") and hsattr(obj, "__iter__") \
-- Docs: https://docs.pytest.org/en/stable/how-to/capture-warnings.html
========================================================================= short test summary info ==========================================================================
ERROR tests/test_diff.py - RuntimeError: dictionary changed size during iteration
ERROR tests/test_module.py
ERROR tests/test_objects.py - ReferenceError: weakly-referenced object no longer exists
ERROR tests/test_session.py
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 4 errors during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
======================================================================= 1 warning, 4 errors in 0.92s ======================================================================= And after ignore those files generating errors + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.5-4.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.5-4.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra --ignore tests/test_diff.py --ignore tests/test_module.py --ignore tests/test_objects.py --ignore tests/test_session.py
=========================================================================== test session starts ============================================================================
platform linux -- Python 3.8.13, pytest-7.1.2, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.5
collected 78 items
tests/test_check.py ..... [ 6%]
tests/test_classdef.py .F........ [ 19%]
tests/test_detect.py ...... [ 26%]
tests/test_dictviews.py .. [ 29%]
tests/test_extendpickle.py .. [ 32%]
tests/test_fglobals.py .. [ 34%]
tests/test_file.py ... [ 38%]
tests/test_functions.py . [ 39%]
tests/test_functors.py . [ 41%]
tests/test_mixins.py . [ 42%]
tests/test_moduledict.py .... [ 47%]
tests/test_nested.py ........ [ 57%]
tests/test_properties.py ... [ 61%]
tests/test_recursive.py .....F. [ 70%]
tests/test_restricted.py . [ 71%]
tests/test_selected.py .... [ 76%]
tests/test_source.py ......F.. [ 88%]
tests/test_temp.py ......F [ 97%]
tests/test_weakref.py .. [100%]
================================================================================= FAILURES =================================================================================
____________________________________________________________________________ test_class_objects ____________________________________________________________________________
def test_class_objects():
clslist = [_class,_class2,_newclass,_newclass2,_mclass]
objlist = [o,oc,n,nc,m]
_clslist = [dill.dumps(obj) for obj in clslist]
_objlist = [dill.dumps(obj) for obj in objlist]
for obj in clslist:
globals().pop(obj.__name__)
del clslist
for obj in ['o','oc','n','nc']:
globals().pop(obj)
del objlist
del obj
for obj,cls in zip(_objlist,_clslist):
> _cls = dill.loads(cls)
tests/test_classdef.py:80:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
dill/_dill.py:387: in loads
return load(file, ignore, **kwds)
dill/_dill.py:373: in load
return Unpickler(file, ignore=ignore, **kwds).load()
dill/_dill.py:646: in load
obj = StockUnpickler.load(self)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = <dill._dill.Unpickler object at 0x7fc0e5020c20>, module = 'tests.test_classdef', name = '_class'
def find_class(self, module, name):
if (module, name) == ('__builtin__', '__main__'):
return self._main.__dict__ #XXX: above set w/save_module_dict
elif (module, name) == ('__builtin__', 'NoneType'):
return type(None) #XXX: special case: NoneType missing
if module == 'dill.dill': module = 'dill._dill'
> return StockUnpickler.find_class(self, module, name)
E AttributeError: Can't get attribute '_class' on <module 'tests.test_classdef' from '/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.5/tests/test_classdef.py'>
dill/_dill.py:636: AttributeError
_________________________________________________________________________ test_recursive_function __________________________________________________________________________
def test_recursive_function():
global fib
fib2 = copy(fib, recurse=True)
fib3 = copy(fib)
fib4 = fib
del fib
> assert fib2(5) == 5
tests/test_recursive.py:145:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
n = 5
def fib(n):
assert n >= 0
if n <= 1:
return n
else:
> return fib(n-1) + fib(n-2)
E NameError: name 'fib' is not defined
tests/test_recursive.py:136: NameError
_____________________________________________________________________________ test_importable ______________________________________________________________________________
def test_importable():
assert getimportable(add) == 'from %s import add\n' % __name__
assert getimportable(squared) == 'from %s import squared\n' % __name__
assert getimportable(Foo) == 'from %s import Foo\n' % __name__
> assert getimportable(Foo.bar) == 'from %s import bar\n' % __name__
E AssertionError: assert 'from tests import bar\n' == 'from tests.t... import bar\n'
E - from tests.test_source import bar
E ? ------------
E + from tests import bar
tests/test_source.py:112: AssertionError
______________________________________________________________________________ test_the_rest _______________________________________________________________________________
def test_the_rest():
for obj in [Bar, Foo, Foo.bar, _foo.bar]:
pyfile = dumpIO_source(obj, alias='_obj')
> _obj = loadIO_source(pyfile)
tests/test_temp.py:92:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
dill/temp.py:228: in loadIO_source
exec(source, local)
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
> ???
E ImportError: cannot import name 'bar' from 'tests' (/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.5/tests/__init__.py)
<string>:1: ImportError
========================================================================= short test summary info ==========================================================================
FAILED tests/test_classdef.py::test_class_objects - AttributeError: Can't get attribute '_class' on <module 'tests.test_classdef' from '/home/tkloczko/rpmbuild/BUILD/dil...
FAILED tests/test_recursive.py::test_recursive_function - NameError: name 'fib' is not defined
FAILED tests/test_source.py::test_importable - AssertionError: assert 'from tests import bar\n' == 'from tests.t... import bar\n'
FAILED tests/test_temp.py::test_the_rest - ImportError: cannot import name 'bar' from 'tests' (/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.5/tests/__init__.py)
======================================================================= 4 failed, 74 passed in 1.30s ======================================================================= I'm going to add above units to --deselect list. |
So, I ran into this trying to re-enable the test suite on Fedora. It's possible to patch dill to fix the problems - mostly just adding obvious handling of the The two import failure errors are because the tests are relying on the ability to import other files from the same directory, which is OK when running directly via I'd also note you don't need to run stuff like linters or coverage tools via pytest if you're using tox. I rather prefer not to. This is how I do it in my projects:
i.e. the main interpreter environments only run the tests (via coverage, to generate the necessary |
BTW, another thing I noticed - I don't think the tests will ever actually fail as currently implemented. #524 should fix that. |
OK .. than will wait and retest that issue on next release 😄 |
FYI just tested 0.3.6 and I see two issue:
Archive: /home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.6/dist/dill-0.3.6-py3-none-any.whl
Length Method Size Cmpr Date Time CRC-32 Name
-------- ------ ------- ---- ---------- ----- -------- ----
7143 Defl:N 2456 66% 10-23-2022 22:48 d6d68f56 dill/__diff.py
10612 Defl:N 4498 58% 01-17-2023 00:53 f02ec9fe dill/__info__.py
3797 Defl:N 1520 60% 10-23-2022 22:48 f5c661c6 dill/__init__.py
82292 Defl:N 20914 75% 10-23-2022 22:48 6a8f4c9e dill/_dill.py
19368 Defl:N 6050 69% 10-23-2022 22:48 057d14b9 dill/_objects.py
6635 Defl:N 2388 64% 10-23-2022 22:48 115248b7 dill/_shims.py
11091 Defl:N 3279 70% 10-23-2022 22:48 98c4c185 dill/detect.py
11079 Defl:N 4033 64% 10-23-2022 22:48 7a0c2076 dill/logger.py
736 Defl:N 461 37% 10-23-2022 22:48 3a1c7e1c dill/objtypes.py
4467 Defl:N 1629 64% 10-23-2022 22:48 15dba0fd dill/pointers.py
22500 Defl:N 6032 73% 10-23-2022 22:48 996cbc34 dill/session.py
630 Defl:N 395 37% 10-23-2022 22:48 8745e619 dill/settings.py
45121 Defl:N 12097 73% 10-23-2022 22:48 a2e8d809 dill/source.py
8027 Defl:N 2088 74% 10-23-2022 22:48 9b697091 dill/temp.py
501 Defl:N 319 36% 10-23-2022 22:48 9eaf3db2 dill/tests/__init__.py
899 Defl:N 511 43% 10-23-2022 22:48 e7a8d9f6 dill/tests/__main__.py
1396 Defl:N 640 54% 10-23-2022 22:48 d08e759f dill/tests/test_check.py
6100 Defl:N 1897 69% 10-23-2022 22:48 75426509 dill/tests/test_classdef.py
885 Defl:N 460 48% 10-23-2022 22:48 4ecfcbc3 dill/tests/test_dataclasses.py
4083 Defl:N 1530 63% 10-23-2022 22:48 32b4a399 dill/tests/test_detect.py
1337 Defl:N 560 58% 10-23-2022 22:48 266a35ed dill/tests/test_dictviews.py
2667 Defl:N 764 71% 10-23-2022 22:48 81d2585e dill/tests/test_diff.py
1315 Defl:N 580 56% 10-23-2022 22:48 41776f92 dill/tests/test_extendpickle.py
1679 Defl:N 687 59% 10-23-2022 22:48 75a0ca84 dill/tests/test_fglobals.py
13578 Defl:N 1926 86% 10-23-2022 22:48 823f808a dill/tests/test_file.py
4119 Defl:N 1430 65% 10-23-2022 22:48 08dbd9ca dill/tests/test_functions.py
930 Defl:N 459 51% 10-23-2022 22:48 218bd075 dill/tests/test_functors.py
2380 Defl:N 992 58% 10-23-2022 22:48 c0af2fa3 dill/tests/test_logger.py
4007 Defl:N 1261 69% 10-23-2022 22:48 9d6267bc dill/tests/test_mixins.py
1943 Defl:N 854 56% 10-23-2022 22:48 1ac359fe dill/tests/test_module.py
1182 Defl:N 638 46% 10-23-2022 22:48 22e98514 dill/tests/test_moduledict.py
3146 Defl:N 1044 67% 10-23-2022 22:48 ce1c72f4 dill/tests/test_nested.py
1834 Defl:N 885 52% 10-23-2022 22:48 4c8d206b dill/tests/test_objects.py
1346 Defl:N 565 58% 10-23-2022 22:48 4172b12a dill/tests/test_properties.py
1412 Defl:N 574 59% 10-23-2022 22:48 14322eaa dill/tests/test_pycapsule.py
4182 Defl:N 1172 72% 10-23-2022 22:48 feb5159c dill/tests/test_recursive.py
1250 Defl:N 459 63% 10-23-2022 22:48 114d572e dill/tests/test_registered.py
783 Defl:N 449 43% 10-23-2022 22:48 3d299e3b dill/tests/test_restricted.py
3218 Defl:N 1116 65% 10-23-2022 22:48 e2362d83 dill/tests/test_selected.py
10156 Defl:N 3185 69% 10-23-2022 22:48 d47779bf dill/tests/test_session.py
6036 Defl:N 1538 75% 10-23-2022 22:48 4b66d56a dill/tests/test_source.py
2619 Defl:N 953 64% 10-23-2022 22:48 4e6ea261 dill/tests/test_temp.py
1602 Defl:N 728 55% 10-23-2022 22:48 865d8a04 dill/tests/test_weakref.py
1641 Defl:N 816 50% 01-17-2023 00:53 d5b0bb96 dill-0.3.6.data/scripts/get_objgraph
577 Defl:N 389 33% 01-17-2023 00:53 7ef28c12 dill-0.3.6.data/scripts/undill
1790 Defl:N 928 48% 01-17-2023 00:53 e33ab4f2 dill-0.3.6.dist-info/LICENSE
9847 Defl:N 3862 61% 01-17-2023 00:53 d1dfbb7c dill-0.3.6.dist-info/METADATA
92 Defl:N 92 0% 01-17-2023 00:53 ee31a5a1 dill-0.3.6.dist-info/WHEEL
5 Defl:N 7 -40% 01-17-2023 00:53 84ee61e8 dill-0.3.6.dist-info/top_level.txt
3970 Defl:N 2263 43% 01-17-2023 00:53 0df48660 dill-0.3.6.dist-info/RECORD
-------- ------- --- -------
338005 104373 69% 50 files This could be solved by move dill/tests/ testts because that directory is autocmatically skipped on forming .whl archive
Here is the pytest pitput + PYTHONPATH=/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.6-2.fc35.x86_64/usr/lib64/python3.8/site-packages:/home/tkloczko/rpmbuild/BUILDROOT/python-dill-0.3.6-2.fc35.x86_64/usr/lib/python3.8/site-packages
+ /usr/bin/pytest -ra -m 'not network' --deselect tests/test_classdef.py::test_class_objects --deselect tests/test_recursive.py::test_recursive_function --deselect tests/test_source.py::test_importable --deselect tests/test_temp.py::test_the_rest --ignore tests/test_diff.py --ignore tests/test_module.py --ignore tests/test_objects.py --ignore tests/test_session.py
==================================================================================== test session starts ====================================================================================
platform linux -- Python 3.8.16, pytest-7.2.1, pluggy-1.0.0
rootdir: /home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.6
plugins: datadir-1.4.1, regressions-2.4.2, timeout-2.1.0
collected 83 items / 5 errors
========================================================================================== ERRORS ===========================================================================================
________________________________________________________________________ ERROR collecting dill/tests/test_module.py _________________________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.6/dill/tests/test_module.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib64/python3.8/importlib/__init__.py:127: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
dill/tests/test_module.py:11: in <module>
import test_mixins as module
dill/__diff.py:220: in _imp
mod = __import__(*args, **kwds)
E ModuleNotFoundError: No module named 'test_mixins'
________________________________________________________________________ ERROR collecting dill/tests/test_objects.py ________________________________________________________________________
dill/tests/test_objects.py:20: in <module>
load_types(pickleable=True,unpickleable=False)
dill/__init__.py:72: in load_types
from . import _objects
dill/__diff.py:223: in _imp
memorise(sys.modules[m])
dill/__diff.py:111: in memorise
[mem(value) for key, value in g.items()]
dill/__diff.py:111: in <listcomp>
[mem(value) for key, value in g.items()]
dill/__diff.py:115: in memorise
[(mem(key), mem(item))
dill/__diff.py:115: in <listcomp>
[(mem(key), mem(item))
dill/__diff.py:91: in memorise
g = get_attrs(obj)
dill/__diff.py:44: in get_attrs
return getattr(obj, '__dict__', None)
E ReferenceError: weakly-referenced object no longer exists
______________________________________________________________________ ERROR collecting dill/tests/test_registered.py _______________________________________________________________________
dill/tests/test_registered.py:35: in <module>
raise e from None
dill/tests/test_registered.py:32: in <module>
assert not bool(success)
E AssertionError: assert not True
E + where True = bool(['PrettyPrinterType', 'StreamHandlerType'])
-------------------------------------------------------------------------------------- Captured stdout --------------------------------------------------------------------------------------
SUCCESS: ['PrettyPrinterType', 'StreamHandlerType']
_______________________________________________________________________ ERROR collecting dill/tests/test_selected.py ________________________________________________________________________
dill/tests/test_selected.py:46: in <module>
objects['TemporaryFileType'].close()
E OSError: [Errno 9] Bad file descriptor
________________________________________________________________________ ERROR collecting dill/tests/test_session.py ________________________________________________________________________
ImportError while importing test module '/home/tkloczko/rpmbuild/BUILD/dill-dill-0.3.6/dill/tests/test_session.py'.
Hint: make sure your test modules/packages have valid Python names.
Traceback:
/usr/lib64/python3.8/importlib/__init__.py:127: in import_module
return _bootstrap._gcd_import(name[level:], package, level)
dill/tests/test_session.py:72: in <module>
import test_dictviews as local_mod # non-builtin top-level module
dill/__diff.py:220: in _imp
mod = __import__(*args, **kwds)
E ModuleNotFoundError: No module named 'test_dictviews'
================================================================================== short test summary info ==================================================================================
ERROR dill/tests/test_module.py
ERROR dill/tests/test_objects.py - ReferenceError: weakly-referenced object no longer exists
ERROR dill/tests/test_registered.py - AssertionError: assert not True
ERROR dill/tests/test_selected.py - OSError: [Errno 9] Bad file descriptor
ERROR dill/tests/test_session.py
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!! Interrupted: 5 errors during collection !!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
===================================================================================== 5 errors in 1.12s ===================================================================================== I'm aware why you are not using pytest however it would be good to keep state of the test suite in ready state to be useable with pytest. Cheers and thank you for your time 😄 |
I'm trying to package your module as an rpm package. So I'm using the typical PEP517 based build, install and test cycle used on building packages from non-root account.
python3 -sBm build -w --no-isolation
build
with--no-isolation
I'm using during all processes only locally installed modulesPytest is failing on collecting units. It shows as well one
PyStdIsDeprecatedWarning
warning.Here is pytest output:
The text was updated successfully, but these errors were encountered: