Skip to content

Commit ad893e4

Browse files
committed
Remove dead code
The 'getrawdict()' function in the Config class is no longer used and should be removed.
1 parent ed96851 commit ad893e4

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

pyrex.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,11 +55,6 @@ def __init__(self, *args, **kwargs):
5555
# All keys are case-sensitive
5656
self.optionxform = lambda option: option
5757

58-
def getrawdict(self):
59-
"""returns a dictionary that doesn't have any interpolation. Useful for
60-
merging configs together"""
61-
return {section: values for (section, values) in self.items(raw=True)}
62-
6358

6459
def read_default_config(keep_defaults):
6560
with open(os.path.join(PYREX_ROOT, "pyrex.ini"), "r") as f:

0 commit comments

Comments
 (0)