Skip to content

Commit f7f7838

Browse files
[3.9] bpo-46198: rename duplicate tests and remove unused code (GH-30297) (GH-31797)
(cherry picked from commit 6c83c8e) Co-authored-by: Nikita Sobolev <[email protected]>
1 parent 0c47008 commit f7f7838

File tree

7 files changed

+6
-12
lines changed

7 files changed

+6
-12
lines changed

Lib/test/datetimetester.py

-4
Original file line numberDiff line numberDiff line change
@@ -1861,8 +1861,6 @@ def test_fromisoformat_fails(self):
18611861

18621862
def test_fromisoformat_fails_typeerror(self):
18631863
# Test that fromisoformat fails when passed the wrong type
1864-
import io
1865-
18661864
bad_types = [b'2009-03-01', None, io.StringIO('2009-03-01')]
18671865
for bad_type in bad_types:
18681866
with self.assertRaises(TypeError):
@@ -3985,8 +3983,6 @@ def test_fromisoformat_fails(self):
39853983

39863984
def test_fromisoformat_fails_typeerror(self):
39873985
# Test the fromisoformat fails when passed the wrong type
3988-
import io
3989-
39903986
bad_types = [b'12:30:45', None, io.StringIO('12:30:45')]
39913987

39923988
for bad_type in bad_types:

Lib/test/support/__init__.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -2390,9 +2390,6 @@ def __init__(self, link=None):
23902390

23912391
self._platform_specific()
23922392

2393-
def _platform_specific(self):
2394-
pass
2395-
23962393
if sys.platform == "win32":
23972394
def _platform_specific(self):
23982395
import _winapi
@@ -2419,6 +2416,9 @@ def _platform_specific(self):
24192416
self._env["PYTHONHOME"] = os.path.dirname(self.real)
24202417
if sysconfig.is_python_build(True):
24212418
self._env["PYTHONPATH"] = os.path.dirname(os.__file__)
2419+
else:
2420+
def _platform_specific(self):
2421+
pass
24222422

24232423
def __enter__(self):
24242424
os.symlink(self.real, self.link)

Lib/test/test_asyncio/test_sslproto.py

-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
import logging
44
import socket
5-
from test import support
65
import unittest
76
import weakref
87
from unittest import mock

Lib/test/test_codecs.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ def check(input, expect):
3030
# On small versions of Windows like Windows IoT or Windows Nano Server not all codepages are present
3131
def is_code_page_present(cp):
3232
from ctypes import POINTER, WINFUNCTYPE, WinDLL
33-
from ctypes.wintypes import BOOL, UINT, BYTE, WCHAR, UINT, DWORD
33+
from ctypes.wintypes import BOOL, BYTE, WCHAR, UINT, DWORD
3434

3535
MAX_LEADBYTES = 12 # 5 ranges, 2 bytes ea., 0 term.
3636
MAX_DEFAULTCHAR = 2 # single or double byte

Lib/test/test_dict.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1435,7 +1435,7 @@ def test_dict_items_result_gc(self):
14351435
self.assertTrue(gc.is_tracked(next(it)))
14361436

14371437
@support.cpython_only
1438-
def test_dict_items_result_gc(self):
1438+
def test_dict_items_result_gc_reversed(self):
14391439
# Same as test_dict_items_result_gc above, but reversed.
14401440
it = reversed({None: []}.items())
14411441
gc.collect()

Lib/test/test_email/test__header_value_parser.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ def test_get_unstructured_without_trailing_whitespace_hang_case(self):
395395
[errors.InvalidHeaderDefect],
396396
'')
397397

398-
def test_get_unstructured_invalid_ew(self):
398+
def test_get_unstructured_invalid_ew2(self):
399399
self._test_get_x(self._get_unst,
400400
'=?utf-8?q?=somevalue?=',
401401
'=?utf-8?q?=somevalue?=',

Lib/test/test_tabnanny.py

-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,6 @@
44
* errored : Whitespace related problems present in file.
55
"""
66
from unittest import TestCase, mock
7-
from unittest import mock
87
import errno
98
import os
109
import tabnanny

0 commit comments

Comments
 (0)