cpython/Lib/test/outstanding_bugs.py

23 lines
431 B
Python
Raw Normal View History

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
#
# 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():
#test_support.run_unittest()
pass
2006-03-01 02:19:04 -04:00
if __name__ == "__main__":
test_main()