Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 0C177200CC6 for ; Tue, 18 Jul 2017 16:52:50 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 0AA9D166F38; Tue, 18 Jul 2017 14:52:50 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 48778166F35 for ; Tue, 18 Jul 2017 16:52:49 +0200 (CEST) Received: (qmail 97489 invoked by uid 500); 18 Jul 2017 14:52:48 -0000 Mailing-List: contact commits-help@subversion.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@subversion.apache.org Delivered-To: mailing list commits@subversion.apache.org Received: (qmail 97479 invoked by uid 99); 18 Jul 2017 14:52:48 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 18 Jul 2017 14:52:48 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id 6E3463A0154 for ; Tue, 18 Jul 2017 14:52:46 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1802307 - /subversion/trunk/tools/dist/release.py Date: Tue, 18 Jul 2017 14:52:45 -0000 To: commits@subversion.apache.org From: danielsh@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170718145247.6E3463A0154@svn01-us-west.apache.org> archived-at: Tue, 18 Jul 2017 14:52:50 -0000 Author: danielsh Date: Tue Jul 18 14:52:45 2017 New Revision: 1802307 URL: http://svn.apache.org/viewvc?rev=1802307&view=rev Log: * tools/dist/release.py (Version.__str__): Add a docstring. Modified: subversion/trunk/tools/dist/release.py Modified: subversion/trunk/tools/dist/release.py URL: http://svn.apache.org/viewvc/subversion/trunk/tools/dist/release.py?rev=1802307&r1=1802306&r2=1802307&view=diff ============================================================================== --- subversion/trunk/tools/dist/release.py (original) +++ subversion/trunk/tools/dist/release.py Tue Jul 18 14:52:45 2017 @@ -199,6 +199,7 @@ class Version(object): return self.pre_num < that.pre_num def __str__(self): + "Return an SVN_VER_NUMBER-formattes string, or 'nightly'." if self.pre: if self.pre == 'nightly': return 'nightly'