* Makefile.am:

* misc/pycheckerrc:
	* morituri/common/accurip.py:
	* morituri/common/checksum.py:
	* morituri/common/encode.py:
	* morituri/image/table.py:
	* morituri/rip/drive.py:
	  Fix up for pychecker warnings for 2.6
	  Fix rip drive list, which forgot some modules.
This commit is contained in:
Thomas Vander Stichele
2009-06-20 10:57:12 +00:00
parent efdc830893
commit 1643d1ec50
8 changed files with 37 additions and 14 deletions

View File

@@ -181,6 +181,8 @@ blacklist = [
'_interface_coptimizations',
#warning: couldn't find real module for class xml.parsers.expat.ExpatError (module name: xml.parsers.expat)
'xml.parsers.expat',
'unittest',
'morituri.extern.log.log',
]
# ignore global variables not used if name is one of these values
@@ -237,4 +239,6 @@ suppressions = {
'twisted.internet.threads.deferToThread' : "no-shadow",
# FIXME: doing this inline doesn't seem to work
'flumotion.component.producers.looper.admin_gtk.py': 'no-classattr',
# Catching a non-Exception object (KeyboardInterrupt)
'unittest': 'no-badexcept',
}