2006-03-01 02:19:04 -04:00
|
|
|
#
|
|
|
|
# This file is for everybody to add tests for bugs that aren't
|
|
|
|
# fixed yet. Please add a test case and appropriate bug description.
|
|
|
|
#
|
|
|
|
# When you fix one of the bugs, please move the test to the correct
|
|
|
|
# test_ module.
|
|
|
|
#
|
|
|
|
|
|
|
|
import unittest
|
|
|
|
from test import test_support
|
|
|
|
|
2006-10-28 10:11:41 -03:00
|
|
|
#
|
2008-03-27 10:34:59 -03:00
|
|
|
# No test cases for outstanding bugs at the moment.
|
2006-10-28 10:11:41 -03:00
|
|
|
#
|
2006-03-01 02:19:04 -04:00
|
|
|
|
|
|
|
|
|
|
|
def test_main():
|
2008-03-27 10:34:59 -03:00
|
|
|
#test_support.run_unittest()
|
|
|
|
pass
|
2006-03-01 02:19:04 -04:00
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
test_main()
|