[issue27904] Let logging format more messages on demand

2016-08-31 Thread SilentGhost
Changes by SilentGhost : -- stage: patch review -> resolved ___ Python tracker ___ ___

[issue27904] Let logging format more messages on demand

2016-08-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 5f6dac170b9b by R David Murray in branch 'default': #27904: fix distutils tests. https://hg.python.org/cpython/rev/5f6dac170b9b -- ___ Python tracker

[issue27904] Let logging format more messages on demand

2016-08-31 Thread R. David Murray
R. David Murray added the comment: Thanks, Ville. -- nosy: +r.david.murray resolution: -> fixed status: open -> closed ___ Python tracker ___

[issue27904] Let logging format more messages on demand

2016-08-31 Thread Ville Skyttä
Ville Skyttä added the comment: Here's a patch that fixes the tests. -- Added file: http://bugs.python.org/file44298/logging-regressions.patch ___ Python tracker

[issue27904] Let logging format more messages on demand

2016-08-31 Thread koobs
Changes by koobs : -- nosy: +koobs ___ Python tracker ___ ___ Python-bugs-list

[issue27904] Let logging format more messages on demand

2016-08-31 Thread SilentGhost
Changes by SilentGhost : -- resolution: fixed -> stage: resolved -> patch review status: closed -> open type: performance -> behavior ___ Python tracker

[issue27904] Let logging format more messages on demand

2016-08-31 Thread Xiang Zhang
Xiang Zhang added the comment: Vinay, this patch introduces regressions. You can either revert this part: --- a/Lib/distutils/cmd.py +++ b/Lib/distutils/cmd.py @@ -329,8 +329,7 @@ class Command: # -- External world manipulation --- def warn(self,

[issue27904] Let logging format more messages on demand

2016-08-31 Thread Roundup Robot
Roundup Robot added the comment: New changeset 1340e298aa7e by Vinay Sajip in branch 'default': Closes #27904: Improved logging statements to defer formatting until needed. https://hg.python.org/cpython/rev/1340e298aa7e -- nosy: +python-dev resolution: -> fixed stage: patch review ->

[issue27904] Let logging format more messages on demand

2016-08-31 Thread SilentGhost
Changes by SilentGhost : -- nosy: +vinay.sajip stage: -> patch review versions: +Python 3.6 ___ Python tracker ___

[issue27904] Let logging format more messages on demand

2016-08-30 Thread Ville Skyttä
New submission from Ville Skyttä: Avoid some string formatting operations on disabled log levels. -- files: logging.patch keywords: patch messages: 273971 nosy: scop priority: normal severity: normal status: open title: Let logging format more messages on demand type: performance Added