Re: How to suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead

2007-02-06 Thread Thomas Bellman
Gabriel Genellina [EMAIL PROTECTED] wrote: En Sat, 03 Feb 2007 07:35:22 -0300, Peter Otten [EMAIL PROTECTED] escribió: #!/usr/bin/env python2.5 python2.5 will be that single argument and no options are possible at all. What might be the reasons for such a seemingly arbitrary

Re: How to suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead

2007-02-05 Thread Gabriel Genellina
En Sat, 03 Feb 2007 07:35:22 -0300, Peter Otten [EMAIL PROTECTED] escribió: Gabriel Genellina wrote: En Sat, 03 Feb 2007 06:12:33 -0300, Peter Otten [EMAIL PROTECTED] escribió: John Nagle wrote: import warnings warnings.filterwarnings(ignore, message=Old style callback, use

How to suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead

2007-02-03 Thread John Nagle
How do I suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead. A library is triggering this message, the library is being fixed, but I need to make the message disappear from the output of a CGI program. John Nagle -- http

Re: How to suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead

2007-02-03 Thread Peter Otten
John Nagle wrote: How do I suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead. A library is triggering this message, the library is being fixed, but I need to make the message disappear from the output of a CGI program. import warnings

Re: How to suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead

2007-02-03 Thread Gabriel Genellina
En Sat, 03 Feb 2007 06:12:33 -0300, Peter Otten [EMAIL PROTECTED] escribió: John Nagle wrote: How do I suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead. A library is triggering this message, the library is being fixed, but I need to make the message

Re: How to suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead

2007-02-03 Thread Neil Cerutti
On 2007-02-03, Gabriel Genellina [EMAIL PROTECTED] wrote: En Sat, 03 Feb 2007 06:12:33 -0300, Peter Otten [EMAIL PROTECTED] escribió: John Nagle wrote: How do I suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead. A library is triggering this message

Re: How to suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead

2007-02-03 Thread Peter Otten
Gabriel Genellina wrote: En Sat, 03 Feb 2007 06:12:33 -0300, Peter Otten [EMAIL PROTECTED] escribió: John Nagle wrote: How do I suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead. A library is triggering this message, the library is being fixed, but I

Re: How to suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead

2007-02-03 Thread John Nagle
Gabriel Genellina wrote: En Sat, 03 Feb 2007 06:12:33 -0300, Peter Otten [EMAIL PROTECTED] escribió: John Nagle wrote: How do I suppress DeprecationWarning: Old style callback, use cb_func(ok, store) instead. A library is triggering this message, the library is being fixed