mirror of
https://github.com/python/cpython.git
synced 2025-08-04 17:08:35 +00:00
Issue #27109: Add InvalidFileException to __all__, by Jacek Kołodziej
This commit is contained in:
parent
f8f3121775
commit
d04d21373f
2 changed files with 8 additions and 2 deletions
|
@ -526,8 +526,14 @@ class TestPlistlibDeprecated(unittest.TestCase):
|
|||
self.assertEqual(cur, in_data)
|
||||
|
||||
|
||||
class MiscTestCase(unittest.TestCase):
|
||||
def test__all__(self):
|
||||
blacklist = {"PlistFormat", "PLISTHEADER"}
|
||||
support.check__all__(self, plistlib, blacklist=blacklist)
|
||||
|
||||
|
||||
def test_main():
|
||||
support.run_unittest(TestPlistlib, TestPlistlibDeprecated)
|
||||
support.run_unittest(TestPlistlib, TestPlistlibDeprecated, MiscTestCase)
|
||||
|
||||
|
||||
if __name__ == '__main__':
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue