Update of /cvsroot/pythonreports/PythonReports/PythonReports
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv9566
Modified Files:
TkDrivers.py
Log Message:
sweep pylint warnings
Index: TkDrivers.py
===================================================================
RCS file: /cvsroot/pythonreports/PythonReports/PythonReports/TkDrivers.py,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** TkDrivers.py 4 Nov 2006 14:18:45 -0000 1.1
--- TkDrivers.py 6 Dec 2006 17:03:25 -0000 1.2
***************
*** 6,12 ****
"""
"""History (most recent first):
04-nov-2006 [als] created
"""
-
__version__ = "$Revision$"[11:-2]
__date__ = "$Date$"[7:-2]
--- 6,12 ----
"""
"""History (most recent first):
+ 05-dec-2006 [als] sweep pylint warnings
04-nov-2006 [als] created
"""
__version__ = "$Revision$"[11:-2]
__date__ = "$Date$"[7:-2]
***************
*** 37,40 ****
--- 37,43 ----
"""
+ # pylint: disable-msg=W0212
+ # W0212: Access to a protected member _root of a client class -
+ # any ideas how to get fpixels another way?
super(TextDriver, self).__init__(font)
self._font = self._get_font(font)
|