Staging
v0.5.1
https://github.com/python/cpython
Revision ef4ec6ed12d6c6200a85068f60483723298b6ff4 authored by Ned Deily on 25 March 2019, 20:21:05 UTC, committed by Ned Deily on 25 March 2019, 20:21:05 UTC
1 parent 3ee1266
Raw File
Tip revision: ef4ec6ed12d6c6200a85068f60483723298b6ff4 authored by Ned Deily on 25 March 2019, 20:21:05 UTC
3.7.3
Tip revision: ef4ec6e
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