Staging
v0.5.1
https://github.com/python/cpython
Raw File
Tip revision: e9f73ac1fd5184173179596d4fa5caa45682d301 authored by Larry Hastings on 10 February 2014, 22:45:05 UTC
Python 3.4.0rc1: Version bump.
Tip revision: e9f73ac
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