Re: deprecation warning

Christoph Zwerschke <[email protected]> Fri, 19 Mar 2021 12:35:30 +0100
Newsgroups gmane.comp.python.reportlab.user
Message-ID <[email protected]>
On 19.03.2021 12:24, Frank Millman wrote:
 > Maybe they are running their program using 'python -W default'?

Or they are using a debug build of Python, or running in development 
mode. In release builds the deprecation warnings are ignored in the 
default filter.

The warnings should actually also show when you're running the main 
module, see https://www.python.org/dev/peps/pep-0565/
Therefore I currently don't understand why they don't show when you 
enter the command in the REPL without "-W default".

-- Christoph