From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id B0F271382C5 for ; Wed, 20 May 2020 03:43:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 02D5FE092D; Wed, 20 May 2020 03:43:28 +0000 (UTC) Received: from mail-pj1-f41.google.com (mail-pj1-f41.google.com [209.85.216.41]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id ECF07E092D for ; Wed, 20 May 2020 03:43:27 +0000 (UTC) Received: by mail-pj1-f41.google.com with SMTP id a5so624973pjh.2 for ; Tue, 19 May 2020 20:43:27 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id:in-reply-to :references:mime-version:content-transfer-encoding; bh=55Xym8YSERRFsdsZSe3UbfeAtJeMIjf3l3mSB0JCmTQ=; b=Gtx6wflyDDM1aQvvKAoVxhUn93mt+lRQxvhoqqV4+R8acXpQWyRxHQiRrLhzmDS+y5 QEVOaZIyoM8XQqjNNkFjXNXG6G0Rbp060Y6bkBeXSSordNTZDUNdqCpGrMlY6Tq0ebSr xwkXBOq4FrigBkR9zW0I4AO3fmbGkJ07dkHKGIVb2Z3/OX/Mxs7yPGN6asYkKLeHQZTV EA96jRSwwNHpuuudSv2SFL+qvFf/+22zxVkPHTfXWqmHWMx/BV9kgxSmqSSKhhX4XH3c lp18VsthsdP5TPv1FedYgnbjc4NqTkPso0UieoUwbVTlNXa6/B9x7ms+jPTadmBSXkg1 3ZtA== X-Gm-Message-State: AOAM5321r4FZmXnsOymmktbIGhJup4rD1BT94HBn0RGw47/KNARZguBN oa3p/zPfBPbkLQDUfea5ijVyDxYO X-Google-Smtp-Source: ABdhPJyrPs0F26zzUqsudOHlCVDdyyBQyPkWVGawYIj0Zr/w62amgKobxVKXk+puVLfEIDju2E3mrg== X-Received: by 2002:a17:90a:4811:: with SMTP id a17mr2937411pjh.130.1589946206687; Tue, 19 May 2020 20:43:26 -0700 (PDT) Received: from localhost ([134.134.137.77]) by smtp.gmail.com with ESMTPSA id iq13sm735220pjb.48.2020.05.19.20.43.25 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Tue, 19 May 2020 20:43:26 -0700 (PDT) From: Matt Turner To: gentoo-catalyst@lists.gentoo.org Cc: Matt Turner Subject: [gentoo-catalyst] [PATCH 21/21] catalyst: Drop ConfigParser Date: Tue, 19 May 2020 20:42:26 -0700 Message-Id: <20200520034226.2870937-21-mattst88@gentoo.org> X-Mailer: git-send-email 2.26.2 In-Reply-To: <20200520034226.2870937-1-mattst88@gentoo.org> References: <20200520034226.2870937-1-mattst88@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Archives-Salt: 9d9db9d2-18c9-4dc1-905e-d05dd4ddd415 X-Archives-Hash: a83116926eeeb66b2aaa57c362ea0f8f Signed-off-by: Matt Turner --- catalyst/config.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/catalyst/config.py b/catalyst/config.py index b527ada0..e1963f71 100644 --- a/catalyst/config.py +++ b/catalyst/config.py @@ -118,14 +118,3 @@ class SpecParser(ParserBase): def __init__(self, filename=""): if filename: self.parse_file(filename) - - -class ConfigParser(ParserBase): - - key_value_separator = '=' - multiple_values = False - empty_values = True - - def __init__(self, filename=""): - if filename: - self.parse_file(filename) -- 2.26.2