[issue21746] urlparse.BaseResult no longer exists

2016-04-30 Thread Berker Peksag
Berker Peksag added the comment: Thanks for the patch, Matthew. Python 3 documentation has already been updated. -- resolution: -> fixed stage: -> resolved status: open -> closed type: -> behavior ___ Python tracker

[issue21746] urlparse.BaseResult no longer exists

2016-04-30 Thread Roundup Robot
Roundup Robot added the comment: New changeset 6d49a7330c99 by Berker Peksag in branch '2.7': Issue #21746: Remove BaseResult reference from urlparse documentation https://hg.python.org/cpython/rev/6d49a7330c99 -- nosy: +python-dev ___ Python tracker

[issue21746] urlparse.BaseResult no longer exists

2014-06-26 Thread Berker Peksag
Changes by Berker Peksag : -- nosy: +berker.peksag, orsenthil ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: h

[issue21746] urlparse.BaseResult no longer exists

2014-06-13 Thread Matthew Gilson
Matthew Gilson added the comment: This originally came up on stackoverflow: http://stackoverflow.com/questions/24200988/modify-url-components-in-python-2/24201020?noredirect=1#24201020 Would it be helpful if I also added a simple example to the docs as in the example there? -- __

[issue21746] urlparse.BaseResult no longer exists

2014-06-13 Thread Martijn Pieters
Martijn Pieters added the comment: Note that the Python 3 docs also need updating, but need a more extensive patch: https://docs.python.org/3/library/urllib.parse.html#structured-parse-results -- nosy: +mjpieters ___ Python tracker

[issue21746] urlparse.BaseResult no longer exists

2014-06-13 Thread Matthew Gilson
Matthew Gilson added the comment: Sorry, forgot to remove the mention of BaseResult ... -- Added file: http://bugs.python.org/file35613/python_doc_patch.patch ___ Python tracker

[issue21746] urlparse.BaseResult no longer exists

2014-06-13 Thread Matthew Gilson
Changes by Matthew Gilson : -- assignee: -> docs@python components: +Documentation nosy: +docs@python versions: +Python 2.7 ___ Python tracker ___ __

[issue21746] urlparse.BaseResult no longer exists

2014-06-13 Thread Matthew Gilson
New submission from Matthew Gilson: The BaseResult has been replaced by namedtuple. This also opens up all of the documented methods on namedtuple which would be nice to have as part of the API. I've taken a stab and re-writing the docs here. Feel free to use it (or not)... -- file