mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
Issue #29220: Merged fixes from 3.6.
This commit is contained in:
commit
d4f5001bac
2 changed files with 14 additions and 5 deletions
|
@ -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."""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue