[PATCH 1 of 3 stable V3] ancestor.deepest: sort revs in C version

Siddharth Agarwal sid0 at fb.com
Thu Jul 25 18:08:13 CDT 2013


# HG changeset patch
# User Siddharth Agarwal <sid0 at fb.com>
# Date 1374787237 25200
#      Thu Jul 25 14:20:37 2013 -0700
# Branch stable
# Node ID acd8063547ca3cb47f65140be7930b60fefd9cdc
# Parent  7a5cdf0c90ed57f914d864fdb7d0cbfcaa2637fa
ancestor.deepest: sort revs in C version

This isn't strictly necessary, but it makes the code more consistent with the
Python version.

diff --git a/mercurial/parsers.c b/mercurial/parsers.c
--- a/mercurial/parsers.c
+++ b/mercurial/parsers.c
@@ -1311,6 +1311,9 @@
 		goto bail;
 	}
 
+	if (PyList_Sort(revs) == -1)
+		goto bail;
+
 	for (i = 0; i < revcount; i++) {
 		int n = (int)PyInt_AsLong(PyList_GET_ITEM(revs, i));
 		long b = 1l << i;


More information about the Mercurial-devel mailing list