if local_fp:
fp.close()
+ def optionxform(self, option):
+ """
+
+ Overrides lowercasing behaviour of
+ :meth:`ConfigParser.RawConfigParser.optionxform`.
+ """
+ return option
+
+
class TestHookeConfigParser (unittest.TestCase):
def test_queue_safe(self):
"""Ensure :class:`HookeConfigParser` is Queue-safe.
fontsize=12)\r
axes = self._c['figure'].add_subplot(1, 1, 1)\r
\r
- if config['plot si format'] == 'True': # TODO: config should convert\r
+ if config['plot SI format'] == 'True': # TODO: config should convert\r
d = int(config['plot decimals']) # TODO: config should convert\r
x_n, x_unit = split_data_label(x_name)\r
y_n, y_unit = split_data_label(y_name)\r