Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Lib/urllib/parse.py
Original file line numberDiff line numberDiff line change
Expand Up@@ -277,7 +277,7 @@ def _hostinfo(self):
returnhostname, port


_UNSPECIFIED=['not specified']
_UNSPECIFIED=sentinel("_UNSPECIFIED", repr="<not specified>")
_MISSING_AS_NONE_DEFAULT=False

class_ResultBase:
Expand Down
Loading