[issue34415] Typo in logging.Formatter docstring

2018-08-19 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: -Python 2.7 ___ Python tracker ___

[issue34415] Typo in logging.Formatter docstring

2018-08-19 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 2e4ae8f1b3147d7f0a461b4ffdde9bcc9e6a2083 by Vinay Sajip (Miss Islington (bot)) in branch '3.7': bpo-34415: Updated logging.Formatter docstring. (GH-8811) (GH-8817) https://github.com/python/cpython/commit/2e4ae8f1b3147d7f0a461b4ffdde9bcc9e6a2083

[issue34415] Typo in logging.Formatter docstring

2018-08-19 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset fed871835ee54f50cabcec6239271739ed4839f5 by Vinay Sajip (Miss Islington (bot)) in branch '3.6': bpo-34415: Updated logging.Formatter docstring. (GH-8811) (GH-8816) https://github.com/python/cpython/commit/fed871835ee54f50cabcec6239271739ed4839f5

[issue34415] Typo in logging.Formatter docstring

2018-08-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +8295 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34415] Typo in logging.Formatter docstring

2018-08-18 Thread miss-islington
Change by miss-islington : -- pull_requests: +8294 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue34415] Typo in logging.Formatter docstring

2018-08-18 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset d3d3171da895d8cb880f23fae6be778f0ac23be7 by Vinay Sajip in branch 'master': bpo-34415: Updated logging.Formatter docstring. (GH-8811) https://github.com/python/cpython/commit/d3d3171da895d8cb880f23fae6be778f0ac23be7 --

[issue34415] Typo in logging.Formatter docstring

2018-08-18 Thread Vinay Sajip
Change by Vinay Sajip : -- keywords: +patch, patch pull_requests: +8288, 8289 stage: -> patch review ___ Python tracker ___ ___

[issue34415] Typo in logging.Formatter docstring

2018-08-18 Thread Vinay Sajip
Change by Vinay Sajip : -- keywords: +patch pull_requests: +8288 stage: -> patch review ___ Python tracker ___ ___

[issue34415] Typo in logging.Formatter docstring

2018-08-18 Thread Terry J. Reedy
Terry J. Reedy added the comment: ... the style-dependent default value, "%(message)s", "{message}", or "${message}", is used. -- ___ Python tracker ___

[issue34415] Typo in logging.Formatter docstring

2018-08-17 Thread Terry J. Reedy
Terry J. Reedy added the comment: The default format depends on the style. From 3.8: class Formatter() def __init__(self, fmt=None, datefmt=None, style='%'): ... self._fmt = self._style._fmt It appears that the class docstring was not updated when the style parameter

[issue34415] Typo in logging.Formatter docstring

2018-08-17 Thread Terry J. Reedy
Change by Terry J. Reedy : -- versions: +Python 3.8 -Python 3.4, Python 3.5 ___ Python tracker ___ ___ Python-bugs-list mailing

[issue34415] Typo in logging.Formatter docstring

2018-08-16 Thread Semyon
New submission from Semyon : There is a typo in the docstring for logging.Formatter: > default value of "%s(message)\\n" is used. I am sure it should be different (and in sync with the actual value): > default value of "%(message)s\\n" is used. The problem is in py2.7, py3.7 and most likely