[issue33802] Regression in logging configuration

2020-10-11 Thread Kyle Evans
Change by Kyle Evans : -- nosy: +kevans nosy_count: 8.0 -> 9.0 pull_requests: +21629 pull_request: https://github.com/python/cpython/pull/22651 ___ Python tracker ___ _

[issue33802] Regression in logging configuration

2020-10-03 Thread Andrés Delfino
Change by Andrés Delfino : -- nosy: -adelfino ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue33802] Regression in logging configuration

2020-10-03 Thread Stefan Behnel
Change by Stefan Behnel : -- nosy: -scoder ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue33802] Regression in logging configuration

2020-10-03 Thread Stefan Behnel
Change by Stefan Behnel : -- pull_requests: -21521 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue33802] Regression in logging configuration

2020-10-02 Thread Stefan Behnel
Change by Stefan Behnel : -- nosy: +scoder nosy_count: 9.0 -> 10.0 pull_requests: +21521 pull_request: https://github.com/python/cpython/pull/22474 ___ Python tracker ___ _

[issue33802] Regression in logging configuration

2020-09-15 Thread Andrés Delfino
Change by Andrés Delfino : -- nosy: +adelfino nosy_count: 8.0 -> 9.0 pull_requests: +21317 pull_request: https://github.com/python/cpython/pull/22205 ___ Python tracker ___

[issue33802] Regression in logging configuration

2020-09-07 Thread mohamed koubaa
Change by mohamed koubaa : -- nosy: +koubaa nosy_count: 7.0 -> 8.0 pull_requests: +21220 pull_request: https://github.com/python/cpython/pull/21986 ___ Python tracker ___ _

[issue33802] Regression in logging configuration

2020-09-07 Thread Jakub Kulik
Change by Jakub Kulik : -- nosy: -kulikjak ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyth

[issue33802] Regression in logging configuration

2020-09-07 Thread Jakub Kulik
Change by Jakub Kulik : -- pull_requests: -21199 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue33802] Regression in logging configuration

2020-09-05 Thread Jakub Kulik
Change by Jakub Kulik : -- nosy: +kulikjak nosy_count: 7.0 -> 8.0 pull_requests: +21199 pull_request: https://github.com/python/cpython/pull/22040 ___ Python tracker ___ __

[issue33802] Regression in logging configuration

2020-08-29 Thread Raymond Hettinger
Change by Raymond Hettinger : -- nosy: +rhettinger nosy_count: 6.0 -> 7.0 pull_requests: +21112 pull_request: https://github.com/python/cpython/pull/21994 ___ Python tracker __

[issue33802] Regression in logging configuration

2018-08-08 Thread Łukasz Langa
Łukasz Langa added the comment: None is an invalid value in the configparser. It only accepts strings. See: >>> cp = ConfigParser() >>> cp['asd'] = {'a': None} Traceback (most recent call last): ... TypeError: option values must be strings The DEFAULT section was an omission which is now fix

[issue33802] Regression in logging configuration

2018-08-06 Thread Steap
Steap added the comment: It seems like this regression has not completely been fixed: there are still issues with "None": $ python3.6 -c 'import configparser; configparser.ConfigParser(defaults={"a": None})' $ python3.7 -c 'import configparser; configparser.ConfigParser(defaults={"a": 1})'

[issue33802] Regression in logging configuration

2018-06-08 Thread Barry A. Warsaw
Change by Barry A. Warsaw : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue33802] Regression in logging configuration

2018-06-08 Thread miss-islington
miss-islington added the comment: New changeset f44203d782e397941c17d96e6a1f9dc1df08b3e6 by Miss Islington (bot) in branch '3.7': bpo-33802: Do not interpolate in ConfigParser while reading defaults (GH-7524) https://github.com/python/cpython/commit/f44203d782e397941c17d96e6a1f9dc1df08b3e6

[issue33802] Regression in logging configuration

2018-06-08 Thread miss-islington
Change by miss-islington : -- pull_requests: +7164 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://ma

[issue33802] Regression in logging configuration

2018-06-08 Thread Łukasz Langa
Łukasz Langa added the comment: New changeset 214f18e49feb6a9d6c05aa09a4bb304905e81334 by Łukasz Langa in branch 'master': bpo-33802: Do not interpolate in ConfigParser while reading defaults (GH-7524) https://github.com/python/cpython/commit/214f18e49feb6a9d6c05aa09a4bb304905e81334

[issue33802] Regression in logging configuration

2018-06-08 Thread Vinay Sajip
Change by Vinay Sajip : -- nosy: +vinay.sajip ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.py

[issue33802] Regression in logging configuration

2018-06-08 Thread Łukasz Langa
Łukasz Langa added the comment: I'm very sorry for the trouble! And impressed at Barry's quick diagnosis. -- ___ Python tracker ___

[issue33802] Regression in logging configuration

2018-06-08 Thread Łukasz Langa
Change by Łukasz Langa : -- pull_requests: +7152 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue33802] Regression in logging configuration

2018-06-07 Thread Ned Deily
Change by Ned Deily : -- nosy: +lukasz.langa ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.pyt

[issue33802] Regression in logging configuration

2018-06-07 Thread Barry A. Warsaw
Change by Barry A. Warsaw : -- keywords: +patch pull_requests: +7137 stage: needs patch -> patch review ___ Python tracker ___ ___ P

[issue33802] Regression in logging configuration

2018-06-07 Thread Barry A. Warsaw
Barry A. Warsaw added the comment: I think the regression is caused by the fix for bpo-23835 https://bugs.python.org/issue23835 -- ___ Python tracker ___

[issue33802] Regression in logging configuration

2018-06-07 Thread Barry A. Warsaw
New submission from Barry A. Warsaw : This looks like a serious regression in 3.7. @ned.deily - I'm marking this as a release blocker, but feel free of course to downgrade it. Run the following as $ python3.6 badconfig.py Hey, it works! $ python3.7 badconfig.py Traceback (most recent call l