Submitter | timeless@mozdev.org |
---|---|
Date | April 4, 2016, 2:20 a.m. |
Message ID | <458b58dfd3ff86e2c27b.1459736450@waste.org> |
Download | mbox | patch |
Permalink | /patch/14313/ |
State | Accepted |
Headers | show
Return-Path: <mercurial-devel-bounces@mercurial-scm.org> X-Original-To: patchwork@patchwork.serpentine.com Delivered-To: patchwork@patchwork.serpentine.com Received: from mercurial.selenic.com (mercurial.selenic.com [192.81.134.36]) by bz.selenic.com (Postfix) with ESMTP id EDE543BBCF for <patchwork@patchwork.serpentine.com>; Sun, 3 Apr 2016 22:21:04 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by mercurial.selenic.com (Postfix) with ESMTP id AC1DE2AE108; Sun, 3 Apr 2016 22:21:04 -0400 (EDT) X-Virus-Scanned: Debian amavisd-new at mercurial-scm.org Received: from mercurial.selenic.com ([127.0.0.1]) by localhost (mercurial.selenic.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id fogZ4FHNgig9; Sun, 3 Apr 2016 22:21:04 -0400 (EDT) Received: from mercurial.selenic.com (localhost [IPv6:::1]) by mercurial.selenic.com (Postfix) with ESMTP id AF5872AE106; Sun, 3 Apr 2016 22:21:02 -0400 (EDT) X-Original-To: mercurial-devel@mercurial-scm.org Delivered-To: mercurial-devel@mercurial-scm.org Received: from localhost (localhost [127.0.0.1]) by mercurial.selenic.com (Postfix) with ESMTP id 28B882AE106 for <mercurial-devel@mercurial-scm.org>; Sun, 3 Apr 2016 22:21:02 -0400 (EDT) X-Virus-Scanned: Debian amavisd-new at mercurial-scm.org Received: from mercurial.selenic.com ([127.0.0.1]) by localhost (mercurial.selenic.com [127.0.0.1]) (amavisd-new, port 10024) with LMTP id goivYZS9nEgt for <mercurial-devel@mercurial-scm.org>; Sun, 3 Apr 2016 22:21:01 -0400 (EDT) Received: from waste.org (waste.org [173.11.57.241]) by mercurial.selenic.com (Postfix) with ESMTP id 82EF12AE104 for <mercurial-devel@mercurial-scm.org>; Sun, 3 Apr 2016 22:21:00 -0400 (EDT) Received: from localhost (localhost [127.0.0.1]) by waste.org (Postfix) with ESMTP id D8B2C7405D for <mercurial-devel@mercurial-scm.org>; Sun, 3 Apr 2016 21:20:59 -0500 (CDT) X-Virus-Scanned: Debian amavisd-new at waste.org Received: from waste.org ([127.0.0.1]) by localhost (waste.org [127.0.0.1]) (amavisd-new, port 10024) with LMTP id 7uzs3rzDekIj for <mercurial-devel@mercurial-scm.org>; Sun, 3 Apr 2016 21:20:57 -0500 (CDT) Received: from waste.org (localhost [127.0.0.1]) by waste.org (Postfix) with ESMTP id C42897405E for <mercurial-devel@selenic.com>; Sun, 3 Apr 2016 21:20:49 -0500 (CDT) MIME-Version: 1.0 Subject: [PATCH 2 of 6 v3] hghave: add docstring for check X-Mercurial-Node: 458b58dfd3ff86e2c27beb852b529b249fb6a467 X-Mercurial-Series-Index: 2 X-Mercurial-Series-Total: 6 Message-Id: <458b58dfd3ff86e2c27b.1459736450@waste.org> X-Mercurial-Series-Id: <4c33ba40ce7602e76f85.1459736449@waste.org> In-Reply-To: <4c33ba40ce7602e76f85.1459736449@waste.org> References: <4c33ba40ce7602e76f85.1459736449@waste.org> User-Agent: Mercurial-patchbomb/3.7.3+652-ff0d3b6b287f Date: Sun, 03 Apr 2016 21:20:50 -0500 From: timeless <timeless@mozdev.org> To: mercurial-devel@mercurial-scm.org X-BeenThere: mercurial-devel@mercurial-scm.org X-Mailman-Version: 2.1.18 Precedence: list List-Id: <mercurial-devel.mercurial-scm.org> List-Unsubscribe: <https://www.mercurial-scm.org/mailman/options/mercurial-devel>, <mailto:mercurial-devel-request@mercurial-scm.org?subject=unsubscribe> List-Archive: <http://www.mercurial-scm.org/pipermail/mercurial-devel/> List-Post: <mailto:mercurial-devel@mercurial-scm.org> List-Help: <mailto:mercurial-devel-request@mercurial-scm.org?subject=help> List-Subscribe: <https://www.mercurial-scm.org/mailman/listinfo/mercurial-devel>, <mailto:mercurial-devel-request@mercurial-scm.org?subject=subscribe> Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: base64 Errors-To: mercurial-devel-bounces@mercurial-scm.org Sender: "Mercurial-devel" <mercurial-devel-bounces@mercurial-scm.org> |
Comments
timeless@mozdev.org - April 4, 2016, 2:20 a.m.
Patch
diff --git a/tests/hghave.py b/tests/hghave.py --- a/tests/hghave.py +++ b/tests/hghave.py @@ -17,6 +17,7 @@ } def check(name, desc): + """Registers a check function for a feature.""" def decorator(func): checks[name] = (func, desc) return func