From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 213E2138A1A for ; Mon, 26 Jan 2015 17:41:07 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A890E0844; Mon, 26 Jan 2015 17:41:06 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id EECAFE0845 for ; Mon, 26 Jan 2015 17:41:05 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 28B41340739 for ; Mon, 26 Jan 2015 17:41:05 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 09200106D8 for ; Mon, 26 Jan 2015 17:41:02 +0000 (UTC) From: "André Erdmann" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "André Erdmann" Message-ID: <1418684448.4186b2408fd0537510047b17917b174acfef4ff2.dywi@gentoo> Subject: [gentoo-commits] proj/R_overlay:master commit in: roverlay/ X-VCS-Repository: proj/R_overlay X-VCS-Files: roverlay/strutil.py X-VCS-Directories: roverlay/ X-VCS-Committer: dywi X-VCS-Committer-Name: André Erdmann X-VCS-Revision: 4186b2408fd0537510047b17917b174acfef4ff2 X-VCS-Branch: master Date: Mon, 26 Jan 2015 17:41:02 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: e633f336-a3e3-476b-ab6c-25cda3529061 X-Archives-Hash: 95193faf352770a4965b6e3839e04f0a commit: 4186b2408fd0537510047b17917b174acfef4ff2 Author: André Erdmann mailerd de> AuthorDate: Mon Dec 15 23:00:46 2014 +0000 Commit: André Erdmann mailerd de> CommitDate: Mon Dec 15 23:00:48 2014 +0000 URL: http://sources.gentoo.org/gitweb/?p=proj/R_overlay.git;a=commit;h=4186b240 roverlay/strutil: add unquote_all to __all__ --- roverlay/strutil.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roverlay/strutil.py b/roverlay/strutil.py index 76949fc..b4bf347 100644 --- a/roverlay/strutil.py +++ b/roverlay/strutil.py @@ -7,7 +7,7 @@ """provides utility functions for string manipulation""" __all__ = [ 'ascii_filter', 'bytes_try_decode', 'fix_ebuild_name', - 'pipe_lines', 'shorten_str', 'unquote', 'foreach_str', + 'pipe_lines', 'shorten_str', 'unquote', 'unquote_all', 'foreach_str', 'str_to_bool', ]