Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:wip/mattst88 commit in: catalyst/
Date: Wed, 27 May 2020 06:20:32
Message-Id: 1590092775.016c8460c88c89e55f85e34664fe7928b0f1c6a6.mattst88@gentoo
1 commit: 016c8460c88c89e55f85e34664fe7928b0f1c6a6
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Tue May 19 19:14:29 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Thu May 21 20:26:15 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=016c8460
7
8 catalyst: Drop ConfigParser
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 catalyst/config.py | 11 -----------
13 1 file changed, 11 deletions(-)
14
15 diff --git a/catalyst/config.py b/catalyst/config.py
16 index b527ada0..e1963f71 100644
17 --- a/catalyst/config.py
18 +++ b/catalyst/config.py
19 @@ -118,14 +118,3 @@ class SpecParser(ParserBase):
20 def __init__(self, filename=""):
21 if filename:
22 self.parse_file(filename)
23 -
24 -
25 -class ConfigParser(ParserBase):
26 -
27 - key_value_separator = '='
28 - multiple_values = False
29 - empty_values = True
30 -
31 - def __init__(self, filename=""):
32 - if filename:
33 - self.parse_file(filename)