|
1 | 1 | diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py |
2 | | -index d6c83a75c1c..19ed4e01091 100644 |
| 2 | +index 49a292df934..e1669a0c9b2 100644 |
3 | 3 | --- a/Lib/test/test_urlparse.py |
4 | 4 | +++ 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), |
7 | 7 | ('git+ssh', 'git@github.com','/user/project.git', |
8 | | - '', '')), |
| 8 | + None, None)), |
9 | 9 | - ('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), |
12 | 12 | - ('itms-services', '', '', |
13 | | -- 'action=download-manifest&url=https://example.com/app', '')), |
| 13 | +- 'action=download-manifest&url=https://example.com/app', None)), |
14 | 14 | ('+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)), |
17 | 17 | diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py |
18 | | -index 8f724f907d4..148caf742c9 100644 |
| 18 | +index e917f8b61bb..8575172573f 100644 |
19 | 19 | --- a/Lib/urllib/parse.py |
20 | 20 | +++ b/Lib/urllib/parse.py |
21 | 21 | @@ -59,7 +59,7 @@ |
|
0 commit comments