Staging
v0.5.1
https://github.com/python/cpython
Revision e557b5c479bd7ffca36f0c1b300e8c795c7a8ab4 authored by Ned Deily on 29 March 2018, 12:57:23 UTC, committed by Ned Deily on 29 March 2018, 12:57:23 UTC
1 parent 4e7efa9
Raw File
Tip revision: e557b5c479bd7ffca36f0c1b300e8c795c7a8ab4 authored by Ned Deily on 29 March 2018, 12:57:23 UTC
bump to 3.7.0b3+
Tip revision: e557b5c
outstanding_bugs.py
#
# 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 support

#
# No test cases for outstanding bugs at the moment.
#


if __name__ == "__main__":
    unittest.main()
back to top