-
Notifications
You must be signed in to change notification settings - Fork 52
/
python3-tests.patch
40 lines (38 loc) · 2 KB
/
python3-tests.patch
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
diff -urNp -x '*.orig' Python-3.9.2.org/Lib/test/test_imaplib.py Python-3.9.2/Lib/test/test_imaplib.py
--- Python-3.9.2.org/Lib/test/test_imaplib.py 2021-02-19 13:31:44.000000000 +0100
+++ Python-3.9.2/Lib/test/test_imaplib.py 2021-02-25 18:42:23.540101637 +0100
@@ -77,7 +77,7 @@ class TestImaplib(unittest.TestCase):
@socket_helper.skip_if_tcp_blackhole
def test_imap4_host_default_value(self):
# Check whether the IMAP4_PORT is truly unavailable.
- with socket.socket() as s:
+ with socket.socket(socket.AF_INET, socket.SOCK_STREAM) as s:
try:
s.connect(('', imaplib.IMAP4_PORT))
self.skipTest(
@@ -85,7 +85,7 @@ class TestImaplib(unittest.TestCase):
# This is the exception that should be raised.
expected_errnos = socket_helper.get_socket_conn_refused_errs()
with self.assertRaises(OSError) as cm:
- imaplib.IMAP4()
+ imaplib.IMAP4('0.0.0.0')
self.assertIn(cm.exception.errno, expected_errnos)
--- a/Lib/test/test_site.py 2024-10-07 07:02:14.000000000 +0200
+++ b/Lib/test/test_site.py.new 2024-10-08 14:14:57.416459147 +0200
@@ -326,14 +326,14 @@ class HelperFunctionsTests(unittest.Test
if os.sep == '/':
# OS X, Linux, FreeBSD, etc
if sys.platlibdir != "lib":
- self.assertEqual(len(dirs), 2)
+ self.assertEqual(len(dirs), 6)
wanted = os.path.join('xoxo', sys.platlibdir,
f'python{sysconfig._get_python_version_abi()}',
'site-packages')
self.assertEqual(dirs[0], wanted)
else:
self.assertEqual(len(dirs), 1)
- wanted = os.path.join('xoxo', 'lib',
+ wanted = os.path.join('xoxo', 'share',
f'python{sysconfig._get_python_version_abi()}',
'site-packages')
self.assertEqual(dirs[-1], wanted)