Re: [PATCH V2] shelve: allow unlimited shelved changes per name

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 11:40 PM, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1498027199 25200 > # Tue Jun 20 23:39:59 2017 -0700 > # Node ID ec51ddbbe3afc1fe7308b921253d2e64fd249e67 > # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b > # Available At https://bitbucket.org

[PATCH V2] shelve: allow unlimited shelved changes per name

2017-06-20 Thread Jun Wu
# HG changeset patch # User Jun Wu # Date 1498027199 25200 # Tue Jun 20 23:39:59 2017 -0700 # Node ID ec51ddbbe3afc1fe7308b921253d2e64fd249e67 # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b # Available At https://bitbucket.org/quark-zju/hg-draft # hg pull https://bitbucket.or

[PATCH V2] patch: rewrite reversehunks (issue5337)

2017-06-20 Thread Jun Wu
# HG changeset patch # User Jun Wu # Date 1498026158 25200 # Tue Jun 20 23:22:38 2017 -0700 # Node ID f54272510c4ec915bc13b1b9732d148cd1decdd0 # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b # Available At https://bitbucket.org/quark-zju/hg-draft # hg pull https://bitbucket.or

Re: [PATCH] py3: catch StopIteration from next() in generatorset

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 11:09 PM, Martin von Zweigbergk wrote: > On Tue, Jun 20, 2017 at 8:38 PM, Gregory Szorc > wrote: >> On Tue, Jun 20, 2017 at 3:24 PM, Martin von Zweigbergk via Mercurial-devel >> wrote: >>> >>> On Tue, Jun 20, 2017 at 2:53 PM, Sean Farley wrote: >>> > Martin von Zweigber

Re: [PATCH] py3: catch StopIteration from next() in generatorset

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 8:38 PM, Gregory Szorc wrote: > On Tue, Jun 20, 2017 at 3:24 PM, Martin von Zweigbergk via Mercurial-devel > wrote: >> >> On Tue, Jun 20, 2017 at 2:53 PM, Sean Farley wrote: >> > Martin von Zweigbergk via Mercurial-devel >> > writes: >> > >> >> # HG changeset patch >> >>

Re: [PATCH] run-tests: fix -i when testcases are used

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 10:25 PM, Jun Wu wrote: > Excerpts from Martin von Zweigbergk's message of 2017-06-20 21:48:05 -0700: >> On Tue, Jun 20, 2017 at 9:45 PM, Jun Wu wrote: >> > # HG changeset patch >> > # User Jun Wu >> > # Date 1498019662 25200 >> > # Tue Jun 20 21:34:22 2017 -0700 >>

Re: [PATCH] shelve: allow unlimited shelved changes per name

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 10:20 PM, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1498020963 25200 > # Tue Jun 20 21:56:03 2017 -0700 > # Node ID 24898c57d4e20dbe0e601fa350b835b9e5b5ab7b > # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b > # Available At https://bitbucket.org

Re: [PATCH] run-tests: fix -i when testcases are used

2017-06-20 Thread Jun Wu
Excerpts from Martin von Zweigbergk's message of 2017-06-20 21:48:05 -0700: > On Tue, Jun 20, 2017 at 9:45 PM, Jun Wu wrote: > > # HG changeset patch > > # User Jun Wu > > # Date 1498019662 25200 > > # Tue Jun 20 21:34:22 2017 -0700 > > # Node ID 30a98655ab27976c2020e20909093e2cb678758b > >

Re: [PATCH 3 of 3] patch: rewrite reversehunks (issue5337)

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 8:45 PM, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1498014757 25200 > # Tue Jun 20 20:12:37 2017 -0700 > # Node ID 214414ec00522324510466ff63f265db6b2b0358 > # Parent 4fddabb1c843b8068063c98cabbb55b3b9276d64 > # Available At https://bitbucket.org/

[PATCH] shelve: allow unlimited shelved changes per name

2017-06-20 Thread Jun Wu
# HG changeset patch # User Jun Wu # Date 1498020963 25200 # Tue Jun 20 21:56:03 2017 -0700 # Node ID 24898c57d4e20dbe0e601fa350b835b9e5b5ab7b # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b # Available At https://bitbucket.org/quark-zju/hg-draft # hg pull https://bitbucket.or

Re: [PATCH] clonebundle: update hook arguments (BC)

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 7:54 PM, Gregory Szorc wrote: > On Tue, Jun 20, 2017 at 4:28 PM, Martin von Zweigbergk > wrote: >> >> # HG changeset patch >> # User Martin von Zweigbergk >> # Date 1497935677 25200 >> # Mon Jun 19 22:14:37 2017 -0700 >> # Node ID 8dd6087bc108e13f7da4e7f8419dd726cbb7

Re: [PATCH] shelve: add a maxchanges option

2017-06-20 Thread Jun Wu
Per discussion on IRC. I'm going to send an alternative that just removes the limit. Excerpts from Martin von Zweigbergk's message of 2017-06-20 17:49:59 -0700: > +for i in xrange(1, repo.ui.configint('shelve', 'maxchanges', 100)): > yield '%s-%02d' % (label, i) > > > What d

Re: [PATCH] run-tests: fix -i when testcases are used

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 9:45 PM, Jun Wu wrote: > # HG changeset patch > # User Jun Wu > # Date 1498019662 25200 > # Tue Jun 20 21:34:22 2017 -0700 > # Node ID 30a98655ab27976c2020e20909093e2cb678758b > # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b > # Available At https://bitbucket.org/

[PATCH] run-tests: fix -i when testcases are used

2017-06-20 Thread Jun Wu
# HG changeset patch # User Jun Wu # Date 1498019662 25200 # Tue Jun 20 21:34:22 2017 -0700 # Node ID 30a98655ab27976c2020e20909093e2cb678758b # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b # Available At https://bitbucket.org/quark-zju/hg-draft # hg pull https://bitbucket.or

[PATCH] tests: adjust quoting to keep Windows happy with recent $PYTHON change

2017-06-20 Thread Matt Harbison
# HG changeset patch # User Matt Harbison # Date 1498015425 14400 # Tue Jun 20 23:23:45 2017 -0400 # Node ID a29007ca5b35d9319e617be608c6d5e00857a389 # Parent b5305a499dfc7a84412d03b53f08f2afc26f86aa tests: adjust quoting to keep Windows happy with recent $PYTHON change I tried adding quote

Re: [PATCH 3 of 9 bm-refactor] bookmarks: factor out delete logic from commands

2017-06-20 Thread Sean Farley
Gregory Szorc writes: > On Tue, Jun 20, 2017 at 5:29 PM, Sean Farley wrote: > >> # HG changeset patch >> # User Sean Farley >> # Date 1497333768 25200 >> # Mon Jun 12 23:02:48 2017 -0700 >> # Branch bm-refactor >> # Node ID 9f36f5280f7d2a0230efe1fd1dcf1a1d57f56ae8 >> # Parent 92a9b407c3b9

[PATCH] hgweb: use separate CSS class for navigation links in footer

2017-06-20 Thread Gregory Szorc
# HG changeset patch # User Gregory Szorc # Date 1498017209 25200 # Tue Jun 20 20:53:29 2017 -0700 # Node ID 90fcc0df5d5b949ec574bccfdb64778f0945bb51 # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b hgweb: use separate CSS class for navigation links in footer 2d93d2159e30 changed the styli

[PATCH 3 of 3] patch: rewrite reversehunks (issue5337)

2017-06-20 Thread Jun Wu
# HG changeset patch # User Jun Wu # Date 1498014757 25200 # Tue Jun 20 20:12:37 2017 -0700 # Node ID 214414ec00522324510466ff63f265db6b2b0358 # Parent 4fddabb1c843b8068063c98cabbb55b3b9276d64 # Available At https://bitbucket.org/quark-zju/hg-draft # hg pull https://bitbucket.or

[PATCH 2 of 3] patch: implement recordhunk.reversehunk

2017-06-20 Thread Jun Wu
# HG changeset patch # User Jun Wu # Date 1498014668 25200 # Tue Jun 20 20:11:08 2017 -0700 # Node ID 4fddabb1c843b8068063c98cabbb55b3b9276d64 # Parent 9b1db75aec5d7c6b6900c1afa9fa3e0cbe91 # Available At https://bitbucket.org/quark-zju/hg-draft # hg pull https://bitbucket.or

[PATCH 1 of 3] crecord: implement uihunk.reversehunk

2017-06-20 Thread Jun Wu
# HG changeset patch # User Jun Wu # Date 1498014667 25200 # Tue Jun 20 20:11:07 2017 -0700 # Node ID 9b1db75aec5d7c6b6900c1afa9fa3e0cbe91 # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b # Available At https://bitbucket.org/quark-zju/hg-draft # hg pull https://bitbucket.or

Re: [PATCH] py3: catch StopIteration from next() in generatorset

2017-06-20 Thread Gregory Szorc
On Tue, Jun 20, 2017 at 3:24 PM, Martin von Zweigbergk via Mercurial-devel < mercurial-devel@mercurial-scm.org> wrote: > On Tue, Jun 20, 2017 at 2:53 PM, Sean Farley wrote: > > Martin von Zweigbergk via Mercurial-devel > > writes: > > > >> # HG changeset patch > >> # User Martin von Zweigbergk

Re: [PATCH 3 of 6 v3] tests: use $PYTHON in #! so we always use the right Python

2017-06-20 Thread Matt Harbison
On Tue, 20 Jun 2017 11:27:33 -0400, Yuya Nishihara wrote: On Tue, 20 Jun 2017 10:10:38 -0400, Augie Fackler wrote: # HG changeset patch # User Augie Fackler # Date 1497551272 14400 # Thu Jun 15 14:27:52 2017 -0400 # Node ID 395f5587885cfa3101c43dd76c4356e698aec472 # Parent b2f59445c5549

Re: [PATCH 01 of 10] config: explicitly track the use of the standard default value

2017-06-20 Thread Gregory Szorc
On Sun, Jun 18, 2017 at 11:55 AM, Pierre-Yves David < pierre-yves.da...@ens-lyon.org> wrote: > # HG changeset patch > # User Pierre-Yves David > # Date 1497696671 -7200 > # Sat Jun 17 12:51:11 2017 +0200 > # Node ID 5e988d4f834b981d8aaf9d77019550d3800687d5 > # Parent 29558247b00eff8c95c7604

Re: [PATCH 05 of 10] config: use the new '_unset' value for 'configbytes'

2017-06-20 Thread Gregory Szorc
On Sun, Jun 18, 2017 at 11:55 AM, Pierre-Yves David < pierre-yves.da...@ens-lyon.org> wrote: > # HG changeset patch > # User Pierre-Yves David > # Date 1497696831 -7200 > # Sat Jun 17 12:53:51 2017 +0200 > # Node ID fa4f7a297bc32124742d631460fa44677854f202 > # Parent 11f995470103d355c41e2bf

Re: [PATCH] clonebundle: update hook arguments (BC)

2017-06-20 Thread Gregory Szorc
On Tue, Jun 20, 2017 at 4:28 PM, Martin von Zweigbergk < martinv...@google.com> wrote: > # HG changeset patch > # User Martin von Zweigbergk > # Date 1497935677 25200 > # Mon Jun 19 22:14:37 2017 -0700 > # Node ID 8dd6087bc108e13f7da4e7f8419dd726cbb790ee > # Parent 6d79e9109908c2cb468c9eeaf

Re: [PATCH 3 of 9 bm-refactor] bookmarks: factor out delete logic from commands

2017-06-20 Thread Gregory Szorc
On Tue, Jun 20, 2017 at 5:29 PM, Sean Farley wrote: > # HG changeset patch > # User Sean Farley > # Date 1497333768 25200 > # Mon Jun 12 23:02:48 2017 -0700 > # Branch bm-refactor > # Node ID 9f36f5280f7d2a0230efe1fd1dcf1a1d57f56ae8 > # Parent 92a9b407c3b96df20e12a2076578bdc664600e09 > boo

Re: [PATCH 1 of 9 bm-refactor] commands: move checkformat to bookmarks module

2017-06-20 Thread Gregory Szorc
On Tue, Jun 20, 2017 at 5:29 PM, Sean Farley wrote: > # HG changeset patch > # User Sean Farley > # Date 1497162778 25200 > # Sat Jun 10 23:32:58 2017 -0700 > # Branch bm-refactor > # Node ID 03591d8a6d8247d35bbdc93cebce1757755ca463 > # Parent 6d79e9109908c2cb468c9eeaf8869aa1926fbea8 > com

[PATCH 3 of 5 topic-experiment] topics: drop the clean argument from _changetopics()

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497995905 -19800 # Wed Jun 21 03:28:25 2017 +0530 # Node ID 06359d495ef9cc44163a35e16ca763148053e69c # Parent 22705ee4a0f7a049dfd18063b5410ef72c55393c topics: drop the clean argument from _changetopics() After this commi

[PATCH 1 of 5 topic-experiment] topics: factor out the logic to change topic in a new function

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497987346 -19800 # Wed Jun 21 01:05:46 2017 +0530 # Node ID 1261e6d3ff9534a3a0f8f703e4a490328140d794 # Parent a788967aa800300e64b3d39d74b9ff0b562c3391 topics: factor out the logic to change topic in a new function It wil

[PATCH 4 of 5 topic-experiment] topics: use a dict for successors of changesets produced by topic change

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1498009910 -19800 # Wed Jun 21 07:21:50 2017 +0530 # Node ID fd9e563f9e2b12615231839c847f42a98b5581fd # Parent 06359d495ef9cc44163a35e16ca763148053e69c topics: use a dict for successors of changesets produced by topic chan

[PATCH 5 of 5 topic-experiment] topics: add an extrafield "topic_change_source "to prevent hash cycle

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1498010531 -19800 # Wed Jun 21 07:32:11 2017 +0530 # Node ID 675753af7aa6855a183c674fab69f00400f35813 # Parent fd9e563f9e2b12615231839c847f42a98b5581fd topics: add an extrafield "topic_change_source "to prevent hash cycle

[PATCH 2 of 5 topic-experiment] topics: rename '--change' flag to '--rev' flag

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497990601 -19800 # Wed Jun 21 02:00:01 2017 +0530 # Node ID 22705ee4a0f7a049dfd18063b5410ef72c55393c # Parent 1261e6d3ff9534a3a0f8f703e4a490328140d794 topics: rename '--change' flag to '--rev' flag The --change flag was

[PATCH V3] status: add a flag to terse the output (issue4119)

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497710422 -19800 # Sat Jun 17 20:10:22 2017 +0530 # Node ID 79bed8c52dfc6dcb0c3098a7117ae4df4c009f8c # Parent 48ffac16c59bf9e2b2c5acab728eb398b25249eb status: add a flag to terse the output (issue4119) This adds an exper

Re: [PATCH] shelve: add a maxchanges option

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
As usual, sorry about bad quoting On Jun 20, 2017 5:42 PM, "Jun Wu" wrote: # HG changeset patch # User Jun Wu # Date 1498003277 25200 # Tue Jun 20 17:01:17 2017 -0700 # Node ID 1429a9c16c6b64cd7f1f399c8fe3ee8b5fa0686b # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b # Available At https:

[PATCH] shelve: add a maxchanges option

2017-06-20 Thread Jun Wu
# HG changeset patch # User Jun Wu # Date 1498003277 25200 # Tue Jun 20 17:01:17 2017 -0700 # Node ID 1429a9c16c6b64cd7f1f399c8fe3ee8b5fa0686b # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b # Available At https://bitbucket.org/quark-zju/hg-draft # hg pull https://bitbucket.or

[PATCH 2 of 9 bm-refactor] commands: move checkconflict to bookmarks module

2017-06-20 Thread Sean Farley
# HG changeset patch # User Sean Farley # Date 1497163358 25200 # Sat Jun 10 23:42:38 2017 -0700 # Branch bm-refactor # Node ID 92a9b407c3b96df20e12a2076578bdc664600e09 # Parent 03591d8a6d8247d35bbdc93cebce1757755ca463 commands: move checkconflict to bookmarks module Again, commands.bookmar

[PATCH 8 of 9 bm-refactor] bookmarks: factor out bookmark printing from commands

2017-06-20 Thread Sean Farley
# HG changeset patch # User Sean Farley # Date 1498001785 25200 # Tue Jun 20 16:36:25 2017 -0700 # Branch bm-refactor # Node ID e9cbc8f652302c0f69c8b05dc7fa6ec2b7eadd8e # Parent c81183c6280a88dd02587b0c8106aa8632236003 bookmarks: factor out bookmark printing from commands diff --git a/mercu

[PATCH 6 of 9 bm-refactor] commands: remove locking code since the bookmarks module does that

2017-06-20 Thread Sean Farley
# HG changeset patch # User Sean Farley # Date 1497998203 25200 # Tue Jun 20 15:36:43 2017 -0700 # Branch bm-refactor # Node ID 08100d41c80e0770dba233fee6a316a0cc99bfda # Parent 33c058ef48902109bce8c199ba17b5afea58b8a0 commands: remove locking code since the bookmarks module does that diff

[PATCH 9 of 9 bm-refactor] bookmarks: factor method _printer out of for loop in printbookmarks

2017-06-20 Thread Sean Farley
# HG changeset patch # User Sean Farley # Date 1498004300 25200 # Tue Jun 20 17:18:20 2017 -0700 # Branch bm-refactor # Node ID 504dd6e8e458eb3b07c958cbf3bc205c1e85fc8d # Parent e9cbc8f652302c0f69c8b05dc7fa6ec2b7eadd8e bookmarks: factor method _printer out of for loop in printbookmarks This

[PATCH 7 of 9 bm-refactor] commands: move activebookmarklabel to bookmarks module

2017-06-20 Thread Sean Farley
# HG changeset patch # User Sean Farley # Date 1497999389 25200 # Tue Jun 20 15:56:29 2017 -0700 # Branch bm-refactor # Node ID c81183c6280a88dd02587b0c8106aa8632236003 # Parent 08100d41c80e0770dba233fee6a316a0cc99bfda commands: move activebookmarklabel to bookmarks module This is going to

[PATCH 3 of 9 bm-refactor] bookmarks: factor out delete logic from commands

2017-06-20 Thread Sean Farley
# HG changeset patch # User Sean Farley # Date 1497333768 25200 # Mon Jun 12 23:02:48 2017 -0700 # Branch bm-refactor # Node ID 9f36f5280f7d2a0230efe1fd1dcf1a1d57f56ae8 # Parent 92a9b407c3b96df20e12a2076578bdc664600e09 bookmarks: factor out delete logic from commands While we're here, let's

[PATCH 5 of 9 bm-refactor] bookmarks: factor out adding a list of bookmarks from commands

2017-06-20 Thread Sean Farley
# HG changeset patch # User Sean Farley # Date 1497997120 25200 # Tue Jun 20 15:18:40 2017 -0700 # Branch bm-refactor # Node ID 33c058ef48902109bce8c199ba17b5afea58b8a0 # Parent c14bfdac2be657612b693fca8ec7dea2f3c47182 bookmarks: factor out adding a list of bookmarks from commands While we'

[PATCH 1 of 9 bm-refactor] commands: move checkformat to bookmarks module

2017-06-20 Thread Sean Farley
# HG changeset patch # User Sean Farley # Date 1497162778 25200 # Sat Jun 10 23:32:58 2017 -0700 # Branch bm-refactor # Node ID 03591d8a6d8247d35bbdc93cebce1757755ca463 # Parent 6d79e9109908c2cb468c9eeaf8869aa1926fbea8 commands: move checkformat to bookmarks module commands.bookmark has gro

[PATCH 4 of 9 bm-refactor] bookmarks: factor out rename logic from commands

2017-06-20 Thread Sean Farley
# HG changeset patch # User Sean Farley # Date 1497377422 25200 # Tue Jun 13 11:10:22 2017 -0700 # Branch bm-refactor # Node ID c14bfdac2be657612b693fca8ec7dea2f3c47182 # Parent 9f36f5280f7d2a0230efe1fd1dcf1a1d57f56ae8 bookmarks: factor out rename logic from commands While we're here, let's

Re: [PATCH] tests: tell pip not to check for a newer version

2017-06-20 Thread Augie Fackler
> On Jun 20, 2017, at 5:39 PM, danek.duv...@oracle.com wrote: > > # HG changeset patch > # User Danek Duvall > # Date 1497994553 25200 > # Tue Jun 20 14:35:53 2017 -0700 > # Node ID 657e3a53dff24205ebeaffa72a378103ba8338d5 > # Parent 404b6acfa192b630fab3c371da072eb8b713d4c1 > tests: tell p

[PATCH] bundle2: don't use debug message "no-transaction" with transaction

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
# HG changeset patch # User Martin von Zweigbergk # Date 1498001593 25200 # Tue Jun 20 16:33:13 2017 -0700 # Node ID f0bd084126edf4cde33ddd6d3836d40f0d11df19 # Parent 8dd6087bc108e13f7da4e7f8419dd726cbb790ee bundle2: don't use debug message "no-transaction" with transaction diff --git a/mer

[PATCH 1 of 6] py3: catch binascii.Error raised from binascii.unhexlify

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497976906 -19800 # Tue Jun 20 22:11:46 2017 +0530 # Node ID c4652d1f51f2069505f88491ba37bbb1a132af98 # Parent 6d79e9109908c2cb468c9eeaf8869aa1926fbea8 py3: catch binascii.Error raised from binascii.unhexlify Before Pytho

[PATCH 6 of 6] py3: use pycompat.bytestr() in place of str()

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497991834 -19800 # Wed Jun 21 02:20:34 2017 +0530 # Node ID 48ffac16c59bf9e2b2c5acab728eb398b25249eb # Parent 41cfbb320dd387e96fdf44b114cbaa8053a892cb py3: use pycompat.bytestr() in place of str() diff --git a/mercurial/

[PATCH 2 of 6] py3: replace str with bytes in isinstance()

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497982578 -19800 # Tue Jun 20 23:46:18 2017 +0530 # Node ID 9fc4a0936f971133fb4a823e9171a4ea184bc970 # Parent c4652d1f51f2069505f88491ba37bbb1a132af98 py3: replace str with bytes in isinstance() We were using str because

[PATCH 3 of 6] py3: make sure the commands name are bytes in test-devel-warnings.t

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497982850 -19800 # Tue Jun 20 23:50:50 2017 +0530 # Node ID f4278aaacb6aa740436af377236067e258489f0b # Parent 9fc4a0936f971133fb4a823e9171a4ea184bc970 py3: make sure the commands name are bytes in test-devel-warnings.t d

[PATCH 5 of 6] py3: use r'' to access values from kwargs where keys are str

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497991414 -19800 # Wed Jun 21 02:13:34 2017 +0530 # Node ID 41cfbb320dd387e96fdf44b114cbaa8053a892cb # Parent 4b07a8a4b8560edf9ec3cbe593d211171d10bf38 py3: use r'' to access values from kwargs where keys are str These ar

[PATCH 4 of 6] py3: convert keys of kwargs in template keywords functions to bytes

2017-06-20 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1497991225 -19800 # Wed Jun 21 02:10:25 2017 +0530 # Node ID 4b07a8a4b8560edf9ec3cbe593d211171d10bf38 # Parent f4278aaacb6aa740436af377236067e258489f0b py3: convert keys of kwargs in template keywords functions to bytes T

[PATCH] clonebundle: update hook arguments (BC)

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
# HG changeset patch # User Martin von Zweigbergk # Date 1497935677 25200 # Mon Jun 19 22:14:37 2017 -0700 # Node ID 8dd6087bc108e13f7da4e7f8419dd726cbb790ee # Parent 6d79e9109908c2cb468c9eeaf8869aa1926fbea8 clonebundle: update hook arguments (BC) By calling applybundle() with 'clonebundles

mercurial@32945: new changeset

2017-06-20 Thread Mercurial Commits
New changeset in mercurial: https://www.mercurial-scm.org/repo/hg/rev/0ce2cbebd749 changeset: 32945:0ce2cbebd749 bookmark:@ tag: tip parent: 32944:404b6acfa192 parent: 32827:d3ab31bf9c0e user:Augie Fackler date:Tue Jun 20 16:33:46 2017 -0400 summary: me

Re: [PATCH 8 of 8] changeset_templater: backport parts map of [templates] section from formatter

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 8:57 AM, Yuya Nishihara wrote: > # HG changeset patch > # User Yuya Nishihara > # Date 1492863368 -32400 > # Sat Apr 22 21:16:08 2017 +0900 > # Node ID 4007733bfcb477654288a9895817ba194709be6a > # Parent c719e1db3d6e014bbf6ae3745c75c0f4e10d55be > changeset_templater:

Re: [PATCH 1 of 6 v3] tests: remove #! from primes.py in test-highlight.t

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 3:37 PM, Kevin Bullock wrote: > Hi Martin, when you're replying way down inside a patch like this, could you > trim the irrelevant parts? Those of us not reading via the Gmail web > interface would appreciate it :) Sure, will try to remember that. I forgot there are such

Re: [PATCH 1 of 6 v3] tests: remove #! from primes.py in test-highlight.t

2017-06-20 Thread Kevin Bullock
Hi Martin, when you're replying way down inside a patch like this, could you trim the irrelevant parts? Those of us not reading via the Gmail web interface would appreciate it :) (Replying on-list for everyone's benefit, because it's been a while since we had a reminder, but this has been our p

Re: [PATCH] py3: catch StopIteration from next() in generatorset

2017-06-20 Thread Sean Farley
Martin von Zweigbergk writes: > On Tue, Jun 20, 2017 at 3:24 PM, Martin von Zweigbergk > wrote: >> On Tue, Jun 20, 2017 at 2:53 PM, Sean Farley wrote: >>> Martin von Zweigbergk via Mercurial-devel >>> writes: >>> # HG changeset patch # User Martin von Zweigbergk # Date 14979924

Re: [PATCH] py3: catch StopIteration from next() in generatorset

2017-06-20 Thread Sean Farley
Martin von Zweigbergk writes: > On Tue, Jun 20, 2017 at 2:53 PM, Sean Farley wrote: >> Martin von Zweigbergk via Mercurial-devel >> writes: >> >>> # HG changeset patch >>> # User Martin von Zweigbergk >>> # Date 1497992441 25200 >>> # Tue Jun 20 14:00:41 2017 -0700 >>> # Node ID f86d21c45

Re: [PATCH] py3: catch StopIteration from next() in generatorset

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 3:24 PM, Martin von Zweigbergk wrote: > On Tue, Jun 20, 2017 at 2:53 PM, Sean Farley wrote: >> Martin von Zweigbergk via Mercurial-devel >> writes: >> >>> # HG changeset patch >>> # User Martin von Zweigbergk >>> # Date 1497992441 25200 >>> # Tue Jun 20 14:00:41 201

Re: [PATCH] py3: catch StopIteration from next() in generatorset

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 2:53 PM, Sean Farley wrote: > Martin von Zweigbergk via Mercurial-devel > writes: > >> # HG changeset patch >> # User Martin von Zweigbergk >> # Date 1497992441 25200 >> # Tue Jun 20 14:00:41 2017 -0700 >> # Node ID f86d21c457209f5f5a139bcc808be33fbd930424 >> # Paren

Re: [PATCH] py3: catch StopIteration from next() in generatorset

2017-06-20 Thread Sean Farley
Martin von Zweigbergk via Mercurial-devel writes: > # HG changeset patch > # User Martin von Zweigbergk > # Date 1497992441 25200 > # Tue Jun 20 14:00:41 2017 -0700 > # Node ID f86d21c457209f5f5a139bcc808be33fbd930424 > # Parent 0906385672d754f13a512fe70759f0463a069f1e > py3: catch StopIte

[PATCH] tests: tell pip not to check for a newer version

2017-06-20 Thread danek . duvall
# HG changeset patch # User Danek Duvall # Date 1497994553 25200 # Tue Jun 20 14:35:53 2017 -0700 # Node ID 657e3a53dff24205ebeaffa72a378103ba8338d5 # Parent 404b6acfa192b630fab3c371da072eb8b713d4c1 tests: tell pip not to check for a newer version pip will check to see if it's the latest ve

[PATCH] py3: catch StopIteration from next() in generatorset

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
# HG changeset patch # User Martin von Zweigbergk # Date 1497992441 25200 # Tue Jun 20 14:00:41 2017 -0700 # Node ID f86d21c457209f5f5a139bcc808be33fbd930424 # Parent 0906385672d754f13a512fe70759f0463a069f1e py3: catch StopIteration from next() in generatorset IIUC, letting the StopIteratio

Re: [PATCH] tests: redirect virtualenv stderr to same file as stdout

2017-06-20 Thread Danek Duvall
Danek Duvall wrote: > Augie Fackler wrote: > > > > > > On Jun 20, 2017, at 16:53, Augie Fackler wrote: > > > > > > # HG changeset patch > > > # User Augie Fackler > > > # Date 1497991974 14400 > > > # Tue Jun 20 16:52:54 2017 -0400 > > > # Node ID ff3964f237d601e7c375c10fbf93029b5db39307

Re: [PATCH] tests: redirect virtualenv stderr to same file as stdout

2017-06-20 Thread Augie Fackler
> On Jun 20, 2017, at 17:26, Danek Duvall wrote: > > Danek Duvall wrote: > >> Augie Fackler wrote: >> >>> On Jun 20, 2017, at 16:53, Augie Fackler wrote: # HG changeset patch # User Augie Fackler # Date 1497991974 14400 # Tue Jun 20 16:52:54 2017 -0400 >>

Re: [PATCH] tests: redirect virtualenv stderr to same file as stdout

2017-06-20 Thread Augie Fackler
> On Jun 20, 2017, at 17:07, Danek Duvall wrote: > > Augie Fackler wrote: > >> >>> On Jun 20, 2017, at 16:53, Augie Fackler wrote: >>> >>> # HG changeset patch >>> # User Augie Fackler >>> # Date 1497991974 14400 >>> # Tue Jun 20 16:52:54 2017 -0400 >>> # Node ID ff3964f237d601e7c375c1

mercurial@32944: 13 new changesets

2017-06-20 Thread Mercurial Commits
13 new changesets in mercurial: https://www.mercurial-scm.org/repo/hg/rev/240183a04429 changeset: 32932:240183a04429 user:Gregory Szorc date:Sat Jun 03 17:04:42 2017 -0700 summary: tests: use unittest.SkipTest https://www.mercurial-scm.org/repo/hg/rev/f83b7376a300 changeset

Re: [PATCH] tests: redirect virtualenv stderr to same file as stdout

2017-06-20 Thread Danek Duvall
Augie Fackler wrote: > > > On Jun 20, 2017, at 16:53, Augie Fackler wrote: > > > > # HG changeset patch > > # User Augie Fackler > > # Date 1497991974 14400 > > # Tue Jun 20 16:52:54 2017 -0400 > > # Node ID ff3964f237d601e7c375c10fbf93029b5db39307 > > # Parent 0ce2cbebd74964ffe61e79de89

Re: [PATCH] tests: redirect virtualenv stderr to same file as stdout

2017-06-20 Thread Sean Farley
Augie Fackler writes: > # HG changeset patch > # User Augie Fackler > # Date 1497991974 14400 > # Tue Jun 20 16:52:54 2017 -0400 > # Node ID ff3964f237d601e7c375c10fbf93029b5db39307 > # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b > tests: redirect virtualenv stderr to same file as stdo

Re: [PATCH] tests: redirect virtualenv stderr to same file as stdout

2017-06-20 Thread Augie Fackler
> On Jun 20, 2017, at 16:53, Augie Fackler wrote: > > # HG changeset patch > # User Augie Fackler > # Date 1497991974 14400 > # Tue Jun 20 16:52:54 2017 -0400 > # Node ID ff3964f237d601e7c375c10fbf93029b5db39307 > # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b > tests: redirect virtual

[PATCH] tests: redirect virtualenv stderr to same file as stdout

2017-06-20 Thread Augie Fackler
# HG changeset patch # User Augie Fackler # Date 1497991974 14400 # Tue Jun 20 16:52:54 2017 -0400 # Node ID ff3964f237d601e7c375c10fbf93029b5db39307 # Parent 0ce2cbebd74964ffe61e79de8941461bccc9371b tests: redirect virtualenv stderr to same file as stdout I'm seeing some failures on the So

[Bug 5604] New: When Color feature is disabled, prompts do not appear until y/n is hit.

2017-06-20 Thread mercurial-bugs
https://bz.mercurial-scm.org/show_bug.cgi?id=5604 Bug ID: 5604 Summary: When Color feature is disabled, prompts do not appear until y/n is hit. Product: Mercurial Version: 4.2.1 Hardware: PC OS: Windows

Re: Transient Windows test failures

2017-06-20 Thread Sean Farley
Matt Harbison writes: > On Sun, 11 Jun 2017 23:25:15 -0400, Matt Harbison > wrote: > >> On Sun, 11 Jun 2017 22:38:23 -0400, Sean Farley wrote: >> >>> >>> Hi Matt, >>> >>> (sorry if you've answered this before) Can you share how you set up this >>> test machine so that I can set my own up? If

Re: [PATCH] tests: don't touch the network when using virtualenv

2017-06-20 Thread Sean Farley
danek.duv...@oracle.com writes: > # HG changeset patch > # User Danek Duvall > # Date 1497913700 25200 > # Mon Jun 19 16:08:20 2017 -0700 > # Node ID c129491ce55e703b50d39fb30ae6da6aa50fc78e > # Parent 661025fd3e1cd5d5e2dee12b7f64312d6cd48a0b > tests: don't touch the network when using virt

Re: Design related issues with similarity function in releasenotes extension.

2017-06-20 Thread Augie Fackler
> On Jun 19, 2017, at 09:29, Rishabh Madan wrote: > > I have added a regex check for issue for the incoming notes. Now it > simply looks for the same issue number in the notes. > Also made a minimum length in words check for the incoming. > > Should I send a RFC patch for further discussio

Re: [PATCH 1 of 6 v3] tests: remove #! from primes.py in test-highlight.t

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 10:04 AM, Augie Fackler wrote: > >> On Jun 20, 2017, at 12:26, Martin von Zweigbergk >> wrote: >> >> Looks like this should now be 'id="l9"' to preserve the intent of the >> test. I can fix that in flight. > > Looking at it, both lines would be highlighted, (they're both

Re: [PATCH 1 of 6 v3] tests: remove #! from primes.py in test-highlight.t

2017-06-20 Thread Augie Fackler
> On Jun 20, 2017, at 12:26, Martin von Zweigbergk > wrote: > > Looks like this should now be 'id="l9"' to preserve the intent of the > test. I can fix that in flight. Looking at it, both lines would be highlighted, (they're both `def something`), so I think there's no need. :) __

[PATCH 3 of 3 v2] strip: include phases in bundle (BC)

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
# HG changeset patch # User Martin von Zweigbergk # Date 1497510952 25200 # Thu Jun 15 00:15:52 2017 -0700 # Node ID 64f74cbf6d070ddcf3a373561ede2cf6ad333f36 # Parent 04fa2d783f067765f9d8cf0d1b02fae1819c232e strip: include phases in bundle (BC) Before this patch, unbundling a stripped chang

[PATCH 2 of 3 v2] bundle: add config option to include phases

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
# HG changeset patch # User Martin von Zweigbergk # Date 1497939455 25200 # Mon Jun 19 23:17:35 2017 -0700 # Node ID 04fa2d783f067765f9d8cf0d1b02fae1819c232e # Parent 0f77eccc602140bd4f8066a196b8ae53c0f50ef9 bundle: add config option to include phases This adds an experimental.bundle-phases

[PATCH 1 of 3 v2] bundle2: record changegroup data in 'op.records' (API)

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
# HG changeset patch # User Martin von Zweigbergk # Date 1497657376 25200 # Fri Jun 16 16:56:16 2017 -0700 # Node ID 0f77eccc602140bd4f8066a196b8ae53c0f50ef9 # Parent 750c3b1bb8a32d462011449c7d983438ef756765 bundle2: record changegroup data in 'op.records' (API) When adding support for bund

Re: [PATCH 1 of 6 v3] tests: remove #! from primes.py in test-highlight.t

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Tue, Jun 20, 2017 at 7:10 AM, Augie Fackler wrote: > # HG changeset patch > # User Augie Fackler > # Date 1497962696 14400 > # Tue Jun 20 08:44:56 2017 -0400 > # Node ID c2e465d9fb3b3c784207c5df126295f59d432dc6 > # Parent b08431e1b0627e5d0e75de75266223b46d70dd2f > tests: remove #! from p

[PATCH 8 of 8] changeset_templater: backport parts map of [templates] section from formatter

2017-06-20 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1492863368 -32400 # Sat Apr 22 21:16:08 2017 +0900 # Node ID 4007733bfcb477654288a9895817ba194709be6a # Parent c719e1db3d6e014bbf6ae3745c75c0f4e10d55be changeset_templater: backport parts map of [templates] section from formatter diff --git

[PATCH 7 of 8] formatter: add support for parts map of [templates] section

2017-06-20 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1492864140 -32400 # Sat Apr 22 21:29:00 2017 +0900 # Node ID c719e1db3d6e014bbf6ae3745c75c0f4e10d55be # Parent b6219e719a2828ff9cf391c5d98bcb7688110236 formatter: add support for parts map of [templates] section Unlike a mapfile whose templa

[PATCH 6 of 8] changeset_templater: backport separator template from formatter

2017-06-20 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1497684740 -32400 # Sat Jun 17 16:32:20 2017 +0900 # Node ID b6219e719a2828ff9cf391c5d98bcb7688110236 # Parent 9f489b3ba5352bca1541618858da1724d1bb282c changeset_templater: backport separator template from formatter As commented, this should

[PATCH 3 of 8] formatter: extract helper function to render template

2017-06-20 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1492864688 -32400 # Sat Apr 22 21:38:08 2017 +0900 # Node ID 2126758ba0a19d028d59add12f8420ede690dfc9 # Parent 9107c695a656eaec6ccc02416660236e912a455c formatter: extract helper function to render template diff --git a/mercurial/formatter.py

[PATCH 2 of 8] changeset_templater: do not enable verbosity postfix for [templates] section

2017-06-20 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1492862947 -32400 # Sat Apr 22 21:09:07 2017 +0900 # Node ID 9107c695a656eaec6ccc02416660236e912a455c # Parent 504f31ba18b5336a0c463462be8e382f26a9b8ec changeset_templater: do not enable verbosity postfix for [templates] section Since this p

[PATCH 4 of 8] formatter: add support for docheader and docfooter templates

2017-06-20 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1492865174 -32400 # Sat Apr 22 21:46:14 2017 +0900 # Node ID 546b89efa96a23908d59ff76ef13dbe8604d1ae9 # Parent 2126758ba0a19d028d59add12f8420ede690dfc9 formatter: add support for docheader and docfooter templates templatepartsmap() is a mini

[PATCH 5 of 8] formatter: add support for separator template

2017-06-20 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1492865451 -32400 # Sat Apr 22 21:50:51 2017 +0900 # Node ID 9f489b3ba5352bca1541618858da1724d1bb282c # Parent 546b89efa96a23908d59ff76ef13dbe8604d1ae9 formatter: add support for separator template This seems useful for writing JSON template

[PATCH 1 of 8] changeset_templater: simplify handling of verbosity postfix

2017-06-20 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1492862771 -32400 # Sat Apr 22 21:06:11 2017 +0900 # Node ID 504f31ba18b5336a0c463462be8e382f26a9b8ec # Parent b08431e1b0627e5d0e75de75266223b46d70dd2f changeset_templater: simplify handling of verbosity postfix diff --git a/mercurial/cmduti

Re: [PATCH 5 of 5] tests: removed ReportedTest exception

2017-06-20 Thread Martin von Zweigbergk via Mercurial-devel
On Mon, Jun 19, 2017 at 11:12 PM, Gregory Szorc wrote: > # HG changeset patch > # User Gregory Szorc > # Date 1496536372 25200 > # Sat Jun 03 17:32:52 2017 -0700 > # Node ID 0d9883e1033ff9da6df5906a375b393a98922ca8 > # Parent 7714abde10367a3a9cc8fa7445fe0057ba556631 > tests: removed Reporte

Re: [PATCH] keyword: use context manager for rollback locking

2017-06-20 Thread Yuya Nishihara
On Tue, 20 Jun 2017 13:16:08 +0100, Christian Ebert wrote: > # HG changeset patch > # User Christian Ebert > # Date 1497959496 -3600 > # Tue Jun 20 12:51:36 2017 +0100 > # Node ID 8d47bf86d05de2bff7cd2b3abeb7ae1de66d2848 > # Parent 661025fd3e1cd5d5e2dee12b7f64312d6cd48a0b > keyword: use cont

Re: [PATCH 3 of 6 v3] tests: use $PYTHON in #! so we always use the right Python

2017-06-20 Thread Yuya Nishihara
On Tue, 20 Jun 2017 10:10:38 -0400, Augie Fackler wrote: > # HG changeset patch > # User Augie Fackler > # Date 1497551272 14400 > # Thu Jun 15 14:27:52 2017 -0400 > # Node ID 395f5587885cfa3101c43dd76c4356e698aec472 > # Parent b2f59445c55490bee0bc421d731a375691a7bc8a > tests: use $PYTHON in

mercurial@32931: 23 new changesets

2017-06-20 Thread Mercurial Commits
23 new changesets in mercurial: https://www.mercurial-scm.org/repo/hg/rev/89610c586fa2 changeset: 32909:89610c586fa2 user:Yuya Nishihara date:Sat Jun 17 13:18:03 2017 +0900 summary: templatekw: reference predecessor node id as {node} in map operation https://www.mercurial-

[PATCH 6 of 6 v3] contrib: add check-code rule to enforce non-use of `python` in tests

2017-06-20 Thread Augie Fackler
# HG changeset patch # User Augie Fackler # Date 1497966583 14400 # Tue Jun 20 09:49:43 2017 -0400 # Node ID e49236e4d9572e1c68e011b6fa6f4ea30a249072 # Parent e55f8e37ac5ed7c3c7a768006a2ff7ec0b1fecb0 contrib: add check-code rule to enforce non-use of `python` in tests diff --git a/contrib/c

[PATCH 5 of 6 v3] cleanup: use $PYTHON to run python in many more tests

2017-06-20 Thread Augie Fackler
# HG changeset patch # User Augie Fackler # Date 1497966302 14400 # Tue Jun 20 09:45:02 2017 -0400 # Node ID e55f8e37ac5ed7c3c7a768006a2ff7ec0b1fecb0 # Parent aca4e0d060caf2babc579259e3d5a85f75518810 cleanup: use $PYTHON to run python in many more tests Spotted one of these, then wrote a ch

[PATCH 4 of 6 v3] tests: enforce use of $PYTHON in tests

2017-06-20 Thread Augie Fackler
# HG changeset patch # User Augie Fackler # Date 1497550959 14400 # Thu Jun 15 14:22:39 2017 -0400 # Node ID aca4e0d060caf2babc579259e3d5a85f75518810 # Parent 395f5587885cfa3101c43dd76c4356e698aec472 tests: enforce use of $PYTHON in tests diff --git a/tests/test-check-shbang.t b/tests/test-

[PATCH 1 of 6 v3] tests: remove #! from primes.py in test-highlight.t

2017-06-20 Thread Augie Fackler
# HG changeset patch # User Augie Fackler # Date 1497962696 14400 # Tue Jun 20 08:44:56 2017 -0400 # Node ID c2e465d9fb3b3c784207c5df126295f59d432dc6 # Parent b08431e1b0627e5d0e75de75266223b46d70dd2f tests: remove #! from primes.py in test-highlight.t It's about to be a source of trouble, b

[PATCH 3 of 6 v3] tests: use $PYTHON in #! so we always use the right Python

2017-06-20 Thread Augie Fackler
# HG changeset patch # User Augie Fackler # Date 1497551272 14400 # Thu Jun 15 14:27:52 2017 -0400 # Node ID 395f5587885cfa3101c43dd76c4356e698aec472 # Parent b2f59445c55490bee0bc421d731a375691a7bc8a tests: use $PYTHON in #! so we always use the right Python diff --git a/tests/test-bisect.t

[PATCH 2 of 6 v3] tests: sed away python #! in test-run-tests.t to avoid some upcoming insanity

2017-06-20 Thread Augie Fackler
# HG changeset patch # User Augie Fackler # Date 1497965599 14400 # Tue Jun 20 09:33:19 2017 -0400 # Node ID b2f59445c55490bee0bc421d731a375691a7bc8a # Parent c2e465d9fb3b3c784207c5df126295f59d432dc6 tests: sed away python #! in test-run-tests.t to avoid some upcoming insanity diff --git a/

  1   2   >