marmoute added inline comments.

INLINE COMMENTS

> Alphare wrote in status.rs:74
> I'm not entirely sure I understand your question.

If I understand you code correctly you currently do:

  filenames = listdir()
  result = [(f, entry(f)) for f in filenames]
  result.sort()

Would it make sense to do:

  filenames = listdir()
  filenames.sort()
  result = [(f, entry(f)) for f in filenames]

REPOSITORY
  rHG Mercurial

CHANGES SINCE LAST ACTION
  https://phab.mercurial-scm.org/D7927/new/

REVISION DETAIL
  https://phab.mercurial-scm.org/D7927

To: Alphare, #hg-reviewers, marmoute
Cc: marmoute, durin42, kevincox, mercurial-devel
_______________________________________________
Mercurial-devel mailing list
Mercurial-devel@mercurial-scm.org
https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Reply via email to