[issue23684] urlparse() documentation does not account for default scheme

2015-06-25 Thread Berker Peksag
Berker Peksag added the comment: Thanks Martin. -- resolution: -> fixed stage: commit review -> resolved status: open -> closed ___ Python tracker ___ __

[issue23684] urlparse() documentation does not account for default scheme

2015-06-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 7bf9e10fc32f by Berker Peksag in branch '2.7': Issue #23684: Clarify the return value of the scheme attribute of ParseResult and SplitResult objects. https://hg.python.org/cpython/rev/7bf9e10fc32f -- ___

[issue23684] urlparse() documentation does not account for default scheme

2015-06-25 Thread Roundup Robot
Roundup Robot added the comment: New changeset 368db4b1ced9 by Berker Peksag in branch '3.4': Issue #23684: Clarify the return value of the scheme attribute of ParseResult and SplitResult objects. https://hg.python.org/cpython/rev/368db4b1ced9 New changeset 68629ebe0fee by Berker Peksag in bran

[issue23684] urlparse() documentation does not account for default scheme

2015-06-21 Thread Berker Peksag
Berker Peksag added the comment: LGTM. Added a minor question on Rietveld. -- assignee: docs@python -> berker.peksag nosy: +berker.peksag stage: patch review -> commit review ___ Python tracker

[issue23684] urlparse() documentation does not account for default scheme

2015-05-31 Thread Martin Panter
Martin Panter added the comment: Here is a patch changing the table entries to “*scheme* argument”. Hopefully this is fairly obvious and doesn’t sound like it defaults to itself. I also made the descriptions of “scheme” and “allow_fragments” more specific, and added some unit tests, because th

[issue23684] urlparse() documentation does not account for default scheme

2015-03-17 Thread Demian Brecht
Demian Brecht added the comment: +1 to the change, but I'd propose maybe "value of *scheme*" given the tables are inline with both urlsplit and urlparse docs? -- nosy: +demian.brecht ___ Python tracker ___

[issue23684] urlparse() documentation does not account for default scheme

2015-03-16 Thread Martin Panter
New submission from Martin Panter: The documentation for urlsplit() says: ''' urlparse(urlstring, scheme='', allow_fragments=True) . . . If the scheme argument is specified, it gives the default addressing scheme, to be used only if the URL does not specify one. The default value for this ar