mirror of
https://github.com/python/cpython.git
synced 2025-09-18 22:50:26 +00:00

svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r86596 | ezio.melotti | 2010-11-20 21:04:17 +0200 (Sat, 20 Nov 2010) | 1 line #9424: Replace deprecated assert* methods in the Python test suite. ........
22 lines
431 B
Python
22 lines
431 B
Python
#
|
|
# 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
|
|
|
|
#
|
|
# No test cases for outstanding bugs at the moment.
|
|
#
|
|
|
|
|
|
def test_main():
|
|
#test_support.run_unittest()
|
|
pass
|
|
|
|
if __name__ == "__main__":
|
|
test_main()
|