[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Vinay Sajip
Change by Vinay Sajip : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset 3be19c082b7f0ba3cf6c28922d3577126871788e by Vinay Sajip (Miss Islington (bot)) in branch '3.7': bpo-35781: Changed references to deprecated 'warn' method in logging documentation in favour of 'warning' (GH-11654) (GH-11657)

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Vinay Sajip
Change by Vinay Sajip : -- pull_requests: -11453 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Vinay Sajip
Vinay Sajip added the comment: New changeset cda73a5af2ff064ca82140342b3158851d43868f by Vinay Sajip (yuji38kwmt) in branch 'master': bpo-35781: Changed references to deprecated 'warn' method in logging documentation in favour of 'warning' (GH-11654)

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Vinay Sajip
Change by Vinay Sajip : -- pull_requests: -11452 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread miss-islington
Change by miss-islington : -- pull_requests: +11451, 11453 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Vinay Sajip
Change by Vinay Sajip : -- pull_requests: -11443 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Vinay Sajip
Change by Vinay Sajip : -- pull_requests: -11444 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe:

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Yuuji KAWAMATSU
Change by Yuuji KAWAMATSU : -- keywords: +patch, patch, patch pull_requests: +11442, 11443, 11444 stage: -> patch review ___ Python tracker ___

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Yuuji KAWAMATSU
Change by Yuuji KAWAMATSU : -- keywords: +patch, patch pull_requests: +11442, 11443 stage: -> patch review ___ Python tracker ___

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-22 Thread Yuuji KAWAMATSU
Change by Yuuji KAWAMATSU : -- keywords: +patch pull_requests: +11442 stage: -> patch review ___ Python tracker ___ ___

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-21 Thread Yuuji KAWAMATSU
Yuuji KAWAMATSU added the comment: Thank you! I will create PR. -- nosy: +Yuuji KAWAMATSU ___ Python tracker ___ ___

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-18 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: Thanks for the report. Would you like to propose a PR for this? Cases of using warn method in documentation examples : * https://github.com/python/cpython/blob/master/Doc/howto/logging.rst *

[issue35781] `logger.warn` method is used in "Logging HOWTO" documentation though `logger.warn` method is deprecated in Python 3.7

2019-01-18 Thread yuji38kwmt
New submission from yuji38kwmt : ### Target Documentation https://docs.python.org/3/howto/logging.html#configuring-logging ### Actual Sample Code ``` # 'application' code logger.debug('debug message') logger.info('info message') logger.warn('warn message') logger.error('error message')