-
-
Notifications
You must be signed in to change notification settings - Fork 35.2k
bpo-46337: Urllib.parse scheme-specific behavior without reliance on URL scheme #30520
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
Closed
oldaccountdeadname
wants to merge
23
commits into
python:main
from
oldaccountdeadname:urllib-custom-schemes
Closed
Changes from 1 commit
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
ee890ed
bpo-46337: Enumerate URL types for urllib's scheme-based behavior
oldaccountdeadname 53c6ccc
bpo-46337: Allow caller modification of url classes
oldaccountdeadname 41d3b58
📜🤖 Added by blurb_it.
blurb-it[bot] eee880c
bpo-46337: Fix grammar of doc comment.
oldaccountdeadname f9b59dd
bpo-46337: document SchemeClass behavior
oldaccountdeadname 1691a1e
add newline to end of news file
oldaccountdeadname c7ae936
bpo-46337: fix doctest formatting
oldaccountdeadname 4fc9059
doc: fix some doctests
oldaccountdeadname c07600c
bpo-43677: fixup PEP 8 style
oldaccountdeadname 07a8576
Merge branch 'main' into urllib-custom-schemes
JelleZijlstra 2c4aa3a
urllib: use an enum.FLAG for SchemeClass's.
oldaccountdeadname 5f81d16
urllib: rename SchemeClass to SchemeFlag
oldaccountdeadname 226bbe9
urllib: remove SchemeFlag.NONE
oldaccountdeadname ff88881
doc/urllib: remove old references to SchemeClass
oldaccountdeadname bf64df0
news: update news file to use SchemeFlag name
oldaccountdeadname 6a09c38
doc/urllib: fix formatting and wording
oldaccountdeadname 9d7cfb5
urllib: expose enums SchemeFlag variants directly
oldaccountdeadname 81d3414
urllib: add UNIVERSAL SchemeFlag
oldaccountdeadname 677ed1a
use None rather than SchemeFlag in public API
oldaccountdeadname 0ec4a4e
do not import from enum
oldaccountdeadname b25e0e8
doc: correct urljoin signature
oldaccountdeadname 2123ad7
make flags parameter keyword-only
oldaccountdeadname 9f50dfb
s/classes/flags
oldaccountdeadname File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc/urllib: remove old references to SchemeClass
This was renamed to urllib; docs should reflect that.
- Loading branch information
commit ff888811ee68f2c623b265a514e213c6f42cfda9
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
s/SchemeFlag.NONE/SchemeFlag(0)/