This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author syadlapalli
Recipients docs@python, nanjekyejoannah, syadlapalli, zach.ware
Date 2019-09-04.15:44:36
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1567611876.63.0.328575873585.issue37970@roundup.psfhosted.org>
In-reply-to
Content
I guess what I'm wondering is this: 

urlsplit(url, scheme='', allow_fragments=True)
    Parse a URL into 5 components:
    <scheme>://<netloc>/<path>?<query>#<fragment>
    Return a 5-tuple: (scheme, netloc, path, query, fragment).
    Note that we don't break the components up in smaller bits
    (e.g. netloc is a single string) and we don't expand % escapes.
(END)

We don't have details regarding anything, i.e scheme, netloc, path or query or fragments. So I was curious about why we would have more documentation around netloc and scheme and nothing about path and query

Should we be adding information for all(scheme, netloc, path, query, fragment) of them, including extra attributes of the returned SplitResult? 

p.s - newbie trying to contribute here
History
Date User Action Args
2019-09-04 15:44:36syadlapallisetrecipients: + syadlapalli, docs@python, zach.ware, nanjekyejoannah
2019-09-04 15:44:36syadlapallisetmessageid: <1567611876.63.0.328575873585.issue37970@roundup.psfhosted.org>
2019-09-04 15:44:36syadlapallilinkissue37970 messages
2019-09-04 15:44:36syadlapallicreate