Issue #29220: Merged fixes from 3.6.

This commit is contained in:
Vinay Sajip 2017-01-11 17:44:07 +00:00
commit d4f5001bac
2 changed files with 14 additions and 5 deletions

View file

@ -319,6 +319,14 @@ class BuiltinLevelsTest(BaseTest):
fatal = logging.getLevelName('FATAL')
self.assertEqual(fatal, logging.FATAL)
def test_regression_29220(self):
"""See issue #29220 for more information."""
logging.addLevelName(logging.INFO, '')
self.addCleanup(logging.addLevelName, logging.INFO, 'INFO')
self.assertEqual(logging.getLevelName(logging.INFO), '')
self.assertEqual(logging.getLevelName(logging.NOTSET), 'NOTSET')
self.assertEqual(logging.getLevelName('NOTSET'), logging.NOTSET)
class BasicFilterTest(BaseTest):
"""Test the bundled Filter class."""