diff options
author | Zachary Ware <zachary.ware@gmail.com> | 2015-12-05 05:33:59 (GMT) |
---|---|---|
committer | Zachary Ware <zachary.ware@gmail.com> | 2015-12-05 05:33:59 (GMT) |
commit | 2d2af91da033d3f9d5c68d4ea90a2d84d7f189f6 (patch) | |
tree | 3df2ce02fa15edae03f2c5f26ae7ac3cce3995c4 /Lib/test/test_pyclbr.py | |
parent | da0f2a1f5250a36c6067e035dcc9064b00b20bf5 (diff) | |
parent | ac28b796d80f869f39662491446145106960a886 (diff) | |
download | cpython-2d2af91da033d3f9d5c68d4ea90a2d84d7f189f6.zip cpython-2d2af91da033d3f9d5c68d4ea90a2d84d7f189f6.tar.gz cpython-2d2af91da033d3f9d5c68d4ea90a2d84d7f189f6.tar.bz2 |
Closes #25795: Merge with 3.5
Diffstat (limited to 'Lib/test/test_pyclbr.py')
-rw-r--r-- | Lib/test/test_pyclbr.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Lib/test/test_pyclbr.py b/Lib/test/test_pyclbr.py index 48bd725..06c10c1 100644 --- a/Lib/test/test_pyclbr.py +++ b/Lib/test/test_pyclbr.py @@ -5,7 +5,7 @@ import sys from types import FunctionType, MethodType, BuiltinFunctionType import pyclbr -from unittest import TestCase +from unittest import TestCase, main as unittest_main StaticMethodType = type(staticmethod(lambda: None)) ClassMethodType = type(classmethod(lambda c: None)) @@ -173,4 +173,4 @@ class PyclbrTest(TestCase): if __name__ == "__main__": - unittest.main() + unittest_main() |