2006-03-01 06:19:04 +00: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 13:11:41 +00:00
|
|
|
#
|
2008-03-27 13:34:59 +00:00
|
|
|
# No test cases for outstanding bugs at the moment.
|
2006-10-28 13:11:41 +00:00
|
|
|
#
|
2006-03-01 06:19:04 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
def test_main():
|
2008-03-27 13:34:59 +00:00
|
|
|
#test_support.run_unittest()
|
|
|
|
|
pass
|
2006-03-01 06:19:04 +00:00
|
|
|
|
|
|
|
|
if __name__ == "__main__":
|
|
|
|
|
test_main()
|