Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 35.2k
gh-120522: Add a --with-app-store-compliance configure option to patch out problematic code#120984
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
e30787fae53183eee0c93eeb976f26cd9ae2d5a0a712cb469eb4898756f7487cb22667a7a1275702466c87a8e72955dd67File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| diff --git a/Lib/test/test_urlparse.py b/Lib/test/test_urlparse.py | ||
| index d6c83a75c1c..19ed4e01091 100644 | ||
| --- a/Lib/test/test_urlparse.py | ||
| +++ b/Lib/test/test_urlparse.py | ||
| @@ -237,11 +237,6 @@ def test_roundtrips(self): | ||
| '','',''), | ||
| ('git+ssh', 'git@github.com','/user/project.git', | ||
| '', '')), | ||
| - ('itms-services://?action=download-manifest&url=https://example.com/app', | ||
| - ('itms-services', '', '', '', | ||
| - 'action=download-manifest&url=https://example.com/app', ''), | ||
| - ('itms-services', '', '', | ||
| - 'action=download-manifest&url=https://example.com/app', '')), | ||
| ('+scheme:path/to/file', | ||
| ('', '', '+scheme:path/to/file', '', '', ''), | ||
| ('', '', '+scheme:path/to/file', '', '')), | ||
| diff --git a/Lib/urllib/parse.py b/Lib/urllib/parse.py | ||
| index 8f724f907d4..148caf742c9 100644 | ||
| --- a/Lib/urllib/parse.py | ||
| +++ b/Lib/urllib/parse.py | ||
| @@ -59,7 +59,7 @@ | ||
| 'imap', 'wais', 'file', 'mms', 'https', 'shttp', | ||
| 'snews', 'prospero', 'rtsp', 'rtsps', 'rtspu', 'rsync', | ||
| 'svn', 'svn+ssh', 'sftp', 'nfs', 'git', 'git+ssh', | ||
| - 'ws', 'wss', 'itms-services'] | ||
| + 'ws', 'wss'] | ||
| uses_params = ['', 'ftp', 'hdl', 'prospero', 'http', 'imap', | ||
| 'https', 'shttp', 'rtsp', 'rtsps', 'rtspu', 'sip', |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| Added a :option:`--with-app-store-compliance` option to patch out known issues | ||
| with macOS/iOS App Store review processes. |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.