Skip to content

Commit 6bbaece

Browse files
Fix app-store-compliance.patch.
1 parent cb60e92 commit 6bbaece

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

Mac/Resources/app-store-compliance.patch

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py
2-
index d6c83a75c1c..19ed4e01091 100644
2+
index 49a292df934..e1669a0c9b2 100644
33
--- a/Lib/test/test_urlparse.py
44
+++ b/Lib/test/test_urlparse.py
5-
@@ -237,11 +237,6 @@ def test_roundtrips(self):
6-
'','',''),
5+
@@ -282,11 +282,6 @@ def test_qs(self, orig, expect):
6+
None,None,None),
77
('git+ssh', 'git@github.com','/user/project.git',
8-
'', '')),
8+
None, None)),
99
- ('itms-services://?action=download-manifest&url=https://example.com/app',
10-
- ('itms-services', '', '', '',
11-
- 'action=download-manifest&url=https://example.com/app', ''),
10+
- ('itms-services', '', '', None,
11+
- 'action=download-manifest&url=https://example.com/app', None),
1212
- ('itms-services', '', '',
13-
- 'action=download-manifest&url=https://example.com/app', '')),
13+
- 'action=download-manifest&url=https://example.com/app', None)),
1414
('+scheme:path/to/file',
15-
('', '', '+scheme:path/to/file', '', '', ''),
16-
('', '', '+scheme:path/to/file', '', '')),
15+
(None, None, '+scheme:path/to/file', None, None, None),
16+
(None, None, '+scheme:path/to/file', None, None)),
1717
diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py
18-
index 8f724f907d4..148caf742c9 100644
18+
index e917f8b61bb..8575172573f 100644
1919
--- a/Lib/urllib/parse.py
2020
+++ b/Lib/urllib/parse.py
2121
@@ -59,7 +59,7 @@

0 commit comments

Comments
 (0)