pokemon-reverse-engineering-tools/pokemontools/configuration.py, branch path-finding reverse engineering tools make ConfigException accessible 2013-11-18T00:34:57+00:00 Bryan Bishop kanzure@gmail.com 2013-11-18T00:34:57+00:00 8ebf9b05b5ed53cd8f635dd86dbfea8bf736fd10 Apparently the "exceptions" name is already used for another module.
Apparently the "exceptions" name is already used for another module.
rename config.py -> configuration.py 2013-09-12T05:34:43+00:00 Bryan Bishop kanzure@gmail.com 2013-09-12T05:34:43+00:00 a4849db2658a14deebb6620fac50e9d8e9f8a0ad This should help cut down on the confusion between the "config" module and the "config" variable that everyone likes to use. The config variable should refer to an instance of Config, whereas before it was being shared as both the name of the module and the name of an instance. "configuration" is always the module. "config" should always be a Config instance. TODO: avoid passing around a Config instance everywhere.
This should help cut down on the confusion between the "config" module
and the "config" variable that everyone likes to use. The config
variable should refer to an instance of Config, whereas before it was
being shared as both the name of the module and the name of an instance.

"configuration" is always the module. "config" should always be a Config
instance.

TODO: avoid passing around a Config instance everywhere.