[issue25615] Document unsorted behaviour of glob.glob

2015-11-16 Thread Martin Panter
Changes by Martin Panter : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___

[issue25615] Document unsorted behaviour of glob.glob

2015-11-16 Thread Martin Panter
Martin Panter added the comment: I committed the patch as it was. But normally I do try to keep the number of lines in the diff close to the minimum, even when committing. RST files are like source code and it doesn’t matter if the wrapping is not 100% perfect, because they get turned into

[issue25615] Document unsorted behaviour of glob.glob

2015-11-16 Thread Roundup Robot
Roundup Robot added the comment: New changeset fa4f0096b719 by Martin Panter in branch '2.7': Issue #25615: Document unsorted behaviour of glob; patch by Dave Jones https://hg.python.org/cpython/rev/fa4f0096b719 New changeset 7ca6a13db0e5 by Martin Panter in branch '3.4': Issue #25615: Document

[issue25615] Document unsorted behaviour of glob.glob

2015-11-15 Thread Dave Jones
Dave Jones added the comment: Ah, sorry about that - force of habit. I did wonder if it was preferable to have a nicely wrapped patch, or to have a clean diff but obviously figured wrong! I'll know for future :) -- ___ Python tracker

[issue25615] Document unsorted behaviour of glob.glob

2015-11-15 Thread Raymond Hettinger
Raymond Hettinger added the comment: +1 for the doc update. For future reference, the doc patches are much easier to review if you don't rewrap the text (we can easily do that part before applying the patch). -- nosy: +rhettinger ___ Python tracker

[issue25615] Document unsorted behaviour of glob.glob

2015-11-13 Thread Martin Panter
Martin Panter added the comment: Looks good to me. Also worth applying to earlier versions I think. -- nosy: +martin.panter stage: -> patch review versions: +Python 2.7, Python 3.4, Python 3.5 ___ Python tracker

[issue25615] Document unsorted behaviour of glob.glob

2015-11-13 Thread Dave Jones
New submission from Dave Jones: As suggested in issue 21748, this is a minor documentation change to make explicitly clear that glob.glob returns unsorted results (on the basis that the existing specification references shell behaviour which is always sorted). -- assignee: docs@python