summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_future4.py
blob: 5456449a725b6dcc24f1b1bdc0ff03b9ad024246 (plain)
1
2
3
4
5
6
7
8
9
10
11
from __future__ import print_function
from __future__ import unicode_literals

import unittest
from test import test_support

def test_main():
    pass

if __name__ == "__main__":
    test_main()