11 lines
158 B
Python
11 lines
158 B
Python
|
from __future__ import unicode_literals
|
||
|
|
||
|
import unittest
|
||
|
from test import test_support
|
||
|
|
||
|
def test_main():
|
||
|
pass
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
test_main()
|