I'm using ConfigParser in Python 2.7 to read from a config file and I'm wondering how to read a value such that it's set to the constant None
in Python.
Currently, my code is as follows:
config.set("Test Series Parameters", "Test Series Parameter", None)
However, this shows up as Test Series Parameter = "None"
(as a string).