Python v2.6 has been released. Using 4Suite (latest release) on Windows with Python v2.6 a number of deprecation warnings are spit out. It would be nice to get these fixed or suppressed as they confuse my users.
c:\Python26\lib\site-packages\Ft\Lib\__init__.py:47: DeprecationWarning: functio
ns overriding warnings.showwarning() must support the 'line' argument
self.message = messages[errorCode] % msgargs
c:\Python26\lib\site-packages\Ft\Lib\__init__.py:47: DeprecationWarning: BaseExc
eption.message has been deprecated as of Python 2.6
self.message = messages[errorCode] % msgargs
c:\Python26\lib\site-packages\Ft\Lib\__init__.py:48: DeprecationWarning: functio
ns overriding warnings.showwarning() must support the 'line' argument
Exception.__init__(self, self.message, args)
c:\Python26\lib\site-packages\Ft\Lib\__init__.py:48: DeprecationWarning: BaseExc
eption.message has been deprecated as of Python 2.6
Exception.__init__(self, self.message, args)
-mike