| Christian Heimes | b1b3efc | 2008-03-26 23:24:27 +0000 | [diff] [blame] | 1 | from __future__ import unicode_literals |
| 2 | |||||
| 3 | import unittest | ||||
| Benjamin Peterson | ee8712c | 2008-05-20 21:35:26 +0000 | [diff] [blame] | 4 | from test import support |
| Christian Heimes | b1b3efc | 2008-03-26 23:24:27 +0000 | [diff] [blame] | 5 | |
| 6 | def test_main(): | ||||
| 7 | pass | ||||
| 8 | |||||
| 9 | if __name__ == "__main__": | ||||
| 10 | test_main() | ||||