[PATCH] convert: remove unused-but-set variable introduced in db9e883566e8

2016-12-17 Thread Yuya Nishihara
# HG changeset patch # User Yuya Nishihara # Date 1482045604 -32400 # Sun Dec 18 16:20:04 2016 +0900 # Node ID 7d505a99f16d0a7faae231432deef5c9bcfd3ad1 # Parent 07025bd744a09dd5622e16ccef11966fda7b86f2 convert: remove unused-but-set variable introduced in db9e883566e8

Re: [PATCH] registrar: raise a programming error on duplicated registering

2016-12-17 Thread Yuya Nishihara
On Fri, 16 Dec 2016 20:31:29 +0100, Pierre-Yves David wrote: > # HG changeset patch > # User Pierre-Yves David > # Date 1481545965 -3600 > # Mon Dec 12 13:32:45 2016 +0100 > # Node ID f3479f74af0d2b21c89e906c503f4cddf4b3c39b > # Parent

Re: [PATCH] error: make it clear that ProgrammingError is for mercurial developers

2016-12-17 Thread timeless
Thanks ___ Mercurial-devel mailing list Mercurial-devel@mercurial-scm.org https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel

Re: [PATCH 2 of 3] chg: start server at a unique address

2016-12-17 Thread Gregory Szorc
It's probably not worth worrying about just yet, but with Linux PID namespaces, multiple processes may think they have the same PID, even if that PID maps to different values inside the kernel. Mozilla has encountered problems with multiple hg processes running in separate containers and PID

[PATCH 5 of 6] py3: replace os.sep with pycompat.ossep (part 3 of 4)

2016-12-17 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1481985864 -19800 # Sat Dec 17 20:14:24 2016 +0530 # Node ID c816d1b5b807f8076b027f9cb9ffdeafe5fd7e62 # Parent a82ca84371f5f4b4213aec534ab0ccdfbd04cf9b py3: replace os.sep with pycompat.ossep (part 3 of 4) diff -r

[PATCH 4 of 6] py3: replace os.sep with pycompat.ossep (part 2 of 4)

2016-12-17 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1481985170 -19800 # Sat Dec 17 20:02:50 2016 +0530 # Node ID a82ca84371f5f4b4213aec534ab0ccdfbd04cf9b # Parent 4107888f9b89e178ab8369a6d63ebb2e17dc26b9 py3: replace os.sep with pycompat.ossep (part 2 of 4) This part also

[PATCH 3 of 6] py3: replace os.sep with pycompat.ossep (part 1 of 4)

2016-12-17 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1481984790 -19800 # Sat Dec 17 19:56:30 2016 +0530 # Node ID 4107888f9b89e178ab8369a6d63ebb2e17dc26b9 # Parent 32865b15b8417a3ad673b72ffc713dffdebcd04a py3: replace os.sep with pycompat.ossep (part 1 of 4) os.sep returns

[PATCH 6 of 6] py3: replace os.sep with pycompat.ossep (part 4 of 4)

2016-12-17 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1481986486 -19800 # Sat Dec 17 20:24:46 2016 +0530 # Node ID 2fadbc71f79ad9e91892faf650a3fed05dbfd6b8 # Parent c816d1b5b807f8076b027f9cb9ffdeafe5fd7e62 py3: replace os.sep with pycompat.ossep (part 4 of 4) diff -r

[PATCH 1 of 6] py3: use %d instead of %s for integers

2016-12-17 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1481983600 -19800 # Sat Dec 17 19:36:40 2016 +0530 # Node ID ea408eb4d17eb54f68ffcbabb1c32cacfb64955d # Parent 935092e525b0ee5656d0830162a1c2adf8248de3 py3: use %d instead of %s for integers Python 3 returns an error if

[PATCH 2 of 6] py3: replace os.pathsep with pycompat.ospathsep

2016-12-17 Thread Pulkit Goyal
# HG changeset patch # User Pulkit Goyal <7895pul...@gmail.com> # Date 1481984237 -19800 # Sat Dec 17 19:47:17 2016 +0530 # Node ID 32865b15b8417a3ad673b72ffc713dffdebcd04a # Parent ea408eb4d17eb54f68ffcbabb1c32cacfb64955d py3: replace os.pathsep with pycompat.ospathsep os.pathsep returns

Re: [PATCH 1 of 4 v5] revlog: add ability to apply transforms on flags

2016-12-17 Thread Pierre-Yves David
On 12/14/2016 12:58 PM, Remi Chaintron wrote: # HG changeset patch # User Remi Chaintron # Date 1481716603 0 # Wed Dec 14 11:56:43 2016 + # Branch stable # Node ID 7599256f2800bbacc3b478ac8d2c4a5746eb4cd1 # Parent d34c04da52a8f2eb61b51bb0aa9cedf1e4b43474 revlog: add