bpo-35781: Changed references to deprecated 'warn' method in logging documentation in favour of 'warning' (GH-11654) (GH-11657)

https://github.com/python/cpython/commit/3be19c082b7f0ba3cf6c28922d357712687... commit: 3be19c082b7f0ba3cf6c28922d3577126871788e branch: 3.7 author: Miss Islington (bot) <31488909+miss-islington@users.noreply.github.com> committer: Vinay Sajip <vinay_sajip@yahoo.co.uk> date: 2019-01-23T07:43:37Z summary: bpo-35781: Changed references to deprecated 'warn' method in logging documentation in favour of 'warning' (GH-11654) (GH-11657) (cherry picked from commit cda73a5af2ff064ca82140342b3158851d43868f) Co-authored-by: yuji38kwmt <yuji38kwmt@yahoo.co.jp> files: M Doc/howto/logging-cookbook.rst M Doc/howto/logging.rst diff --git a/Doc/howto/logging-cookbook.rst b/Doc/howto/logging-cookbook.rst index b1930a791fca..e391506ce2e4 100644 --- a/Doc/howto/logging-cookbook.rst +++ b/Doc/howto/logging-cookbook.rst @@ -186,7 +186,7 @@ previous simple module-based configuration example:: # 'application' code logger.debug('debug message') logger.info('info message') - logger.warn('warn message') + logger.warning('warn message') logger.error('error message') logger.critical('critical message') @@ -295,7 +295,7 @@ Here is an example of a module using the logging configuration server:: while True: logger.debug('debug message') logger.info('info message') - logger.warn('warn message') + logger.warning('warn message') logger.error('error message') logger.critical('critical message') time.sleep(5) diff --git a/Doc/howto/logging.rst b/Doc/howto/logging.rst index c90df4301fa6..7a68ca89199c 100644 --- a/Doc/howto/logging.rst +++ b/Doc/howto/logging.rst @@ -610,7 +610,7 @@ logger, a console handler, and a simple formatter using Python code:: # 'application' code logger.debug('debug message') logger.info('info message') - logger.warn('warn message') + logger.warning('warn message') logger.error('error message') logger.critical('critical message') @@ -640,7 +640,7 @@ the names of the objects:: # 'application' code logger.debug('debug message') logger.info('info message') - logger.warn('warn message') + logger.warning('warn message') logger.error('error message') logger.critical('critical message')
participants (1)
-
Vinay Sajip