summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_getargs2.py
diff options
context:
space:
mode:
Diffstat (limited to 'Lib/test/test_getargs2.py')
-rw-r--r--Lib/test/test_getargs2.py10
1 files changed, 1 insertions, 9 deletions
diff --git a/Lib/test/test_getargs2.py b/Lib/test/test_getargs2.py
index e0db9e4..7c11c6c 100644
--- a/Lib/test/test_getargs2.py
+++ b/Lib/test/test_getargs2.py
@@ -1162,7 +1162,7 @@ class SkipitemTest(unittest.TestCase):
dict_b = {'b':1}
keywords = ["a", "b"]
- supported = ('s#', 's*', 'z#', 'z*', 'u#', 'Z#', 'y#', 'y*', 'w#', 'w*')
+ supported = ('s#', 's*', 'z#', 'z*', 'y#', 'y*', 'w#', 'w*')
for c in string.ascii_letters:
for c2 in '#*':
f = c + c2
@@ -1255,14 +1255,6 @@ class Test_testcapi(unittest.TestCase):
for name in dir(_testcapi)
if name.startswith('test_') and name.endswith('_code'))
- @warnings_helper.ignore_warnings(category=DeprecationWarning)
- def test_u_code(self):
- _testcapi.test_u_code()
-
- @warnings_helper.ignore_warnings(category=DeprecationWarning)
- def test_Z_code(self):
- _testcapi.test_Z_code()
-
if __name__ == "__main__":
unittest.main()