Staging
v0.5.1
https://github.com/python/cpython
Revision 5e9e9db9d9b648d2326e2853dc07377e12498e3f authored by Miss Islington (bot) on 29 May 2018, 15:59:27 UTC, committed by Yury Selivanov on 29 May 2018, 15:59:27 UTC
(cherry picked from commit a9cab433bbf02f3a1de59d14dc8f583181ffe2d5)

Co-authored-by: Dong-hee Na <donghee.na92@gmail.com>
1 parent e151f83
Raw File
Tip revision: 5e9e9db9d9b648d2326e2853dc07377e12498e3f authored by Miss Islington (bot) on 29 May 2018, 15:59:27 UTC
bpo-33197: Update a error message of invalid inspect.Parameters. (GH-6636) (#7205)
Tip revision: 5e9e9db
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