[issue14293] Message methods delegated via __getattr__ inaccessible using super().method

2014-09-20 Thread R. David Murray
R. David Murray added the comment: _Headerlist never made it into the committed code. Subclassing Message works fine in both the mainline email code and the provisional extensions. -- resolution: - out of date stage: - resolved status: open - closed

[issue14293] Message methods delegated via __getattr__ inaccessible using super().method

2014-07-03 Thread Mark Lawrence
Mark Lawrence added the comment: @David I believe this is one for your TODO list. -- components: +email -Library (Lib) nosy: +BreamoreBoy, barry type: - behavior versions: +Python 3.4, Python 3.5 -Python 3.3 ___ Python tracker rep...@bugs.python.org

[issue14293] Message methods delegated via __getattr__ inaccessible using super().method

2012-03-13 Thread Brian Jones
New submission from Brian Jones bkjo...@gmail.com: In email6, the message.Message class tries to delegate calls to methods not defined in Message to message._HeaderList. However, delegating in this way makes the methods inaccessible when accessing them through a call to super(). This comes