From patchwork Sun Mar 10 01:50:21 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: D6105: py3: convert indexes into bytes when enumerating lists in urlencodenested From: phabricator X-Patchwork-Id: 39172 Message-Id: To: mercurial-devel@mercurial-scm.org Date: Sun, 10 Mar 2019 01:50:21 +0000 This revision was automatically updated to reflect the committed changes. Closed by commit rHG47125193bad0: py3: convert indexes into bytes when enumerating lists in urlencodenested (authored by Kwan, committed by ). REPOSITORY rHG Mercurial CHANGES SINCE LAST UPDATE https://phab.mercurial-scm.org/D6105?vs=14418&id=14431 REVISION DETAIL https://phab.mercurial-scm.org/D6105 AFFECTED FILES hgext/phabricator.py CHANGE DETAILS To: Kwan, #hg-reviewers Cc: mercurial-devel diff --git a/hgext/phabricator.py b/hgext/phabricator.py --- a/hgext/phabricator.py +++ b/hgext/phabricator.py @@ -161,7 +161,8 @@ def process(prefix, obj): if isinstance(obj, bool): obj = {True: b'true', False: b'false'}[obj] # Python -> PHP form - items = {list: enumerate, dict: lambda x: x.items()}.get(type(obj)) + lister = lambda l: [(b'%d' % k, v) for k, v in enumerate(l)] + items = {list: lister, dict: lambda x: x.items()}.get(type(obj)) if items is None: flatparams[prefix] = obj else: