Pylint: "E1121 Too many positional arguments for function call" added to ignore list; pinning zope.testing to 3.9.5 to avoid coverage-test failure.

svn path=/plone.app.discussion/trunk/; revision=39628
This commit is contained in:
Timo Stollenwerk 2010-09-03 21:01:22 +00:00
parent ea13020498
commit 34f1106748
1 changed files with 3 additions and 0 deletions

View File

@ -19,6 +19,7 @@ parts +=
[versions]
zope.schema = 3.6.0
zope.testing = 3.9.5
Sphinx = 0.6.4
Products.TinyMCE = 1.1.1
@ -84,6 +85,8 @@ arguments = [
# - Reason: raises an error on zope.interface definitions
# E0213 Method should have "self" as first argument
# - Reason: raises an error on zope.interface definitions
# E1121 Too many positional arguments for function call
# - Reason: ???
# E1002 Use super on an old style class
# - Reason: super(CommentsViewlet, self).update() raises an error
# W0622 total_comments: Redefining built-in 'object'