[issue19455] LoggerAdapter class lacks documented setLevel method

2013-10-30 Thread Eric Hanchrow
Changes by Eric Hanchrow eric.hanch...@gmail.com: -- components: Library (Lib) nosy: Eric.Hanchrow priority: normal severity: normal status: open title: LoggerAdapter class lacks documented setLevel method type: behavior versions: Python 2.7

[issue19063] Python 3.3.3 encodes emails containing non-ascii data as 7bit

2013-10-30 Thread Eric Hanchrow
Eric Hanchrow added the comment: Put the following into a file named repro.py, then type python repro.py at your shell. You'll see ``AttributeError: 'CustomAdapter' object has no attribute 'setLevel'`` import logging logging.basicConfig () class CustomAdapter(logging.LoggerAdapter): def

[issue19063] Python 3.3.3 encodes emails containing non-ascii data as 7bit

2013-10-30 Thread Eric Hanchrow
Eric Hanchrow added the comment: Gaah, please ignore that last message; I accidentally pasted it into the wrong page :-( -- ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19063

[issue19455] LoggerAdapter class lacks documented setLevel method

2013-10-30 Thread Eric Hanchrow
New submission from Eric Hanchrow: Put the following into a file named repro.py, then type python repro.py at your shell. You'll see ``AttributeError: 'CustomAdapter' object has no attribute 'setLevel'`` import logging logging.basicConfig () class CustomAdapter(logging.LoggerAdapter

[issue19455] LoggerAdapter class lacks documented setLevel method

2013-10-30 Thread Eric Hanchrow
Eric Hanchrow added the comment: I should have been clearer: the problem is that the docs (http://docs.python.org/2/library/logging.html#logging.LoggerAdapter) say In addition to the above, LoggerAdapter supports the following methods of Logger, i.e. debug(), info(), warning(), error

[issue19455] LoggerAdapter class lacks documented setLevel method

2013-10-30 Thread Eric Hanchrow
Eric Hanchrow added the comment: Thanks! On Wed, Oct 30, 2013 at 5:36 PM, Vinay Sajip rep...@bugs.python.org wrote: Vinay Sajip added the comment: Okay, I see. I can't add the methods to the code (as feature additions aren't allowed in micro releases, and 2.7 is the last 2.x release). So

[issue19063] Python 3.3.3 encodes emails containing non-ascii data as 7bit

2013-10-31 Thread Eric Hanchrow
Changes by Eric Hanchrow eric.hanch...@gmail.com: -- nosy: -Eric.Hanchrow ___ Python tracker rep...@bugs.python.org http://bugs.python.org/issue19063 ___ ___ Python-bugs

[issue15873] datetime: add ability to parse RFC 3339 dates and times

2016-04-24 Thread Eric Hanchrow
Changes by Eric Hanchrow <eric.hanch...@gmail.com>: -- nosy: +Eric.Hanchrow ___ Python tracker <rep...@bugs.python.org> <http://bugs.python.org/issue15873> ___