Re: [Python-Dev] Backwards Incompatibility in logging module in 3.4?

2014-06-13 Thread Don Spaulding
On Thu, Jun 12, 2014 at 6:45 PM, Victor Stinner wrote: > Hi, > > 2014-06-13 0:38 GMT+02:00 Don Spaulding : > > Is this a bug or an intentional break? If it's the latter, shouldn't > this > > at least be mentioned in the "What's new in Python 3.4"

[Python-Dev] Backwards Incompatibility in logging module in 3.4?

2014-06-12 Thread Don Spaulding
Hi there, I just started testing a project of mine on Python 3.4.0b1. I ran into a change that broke compatibility with the logging module in 3.3. The basic test is: $ py34/bin/python -c 'import logging; print(logging.getLevelName("debug".upper()))' Level DEBUG $ py33/bin/python -c