SettingRegistry

class glue.config.SettingRegistry[source]

Bases: glue.config.DictRegistry

Stores key/value settings that code can use to customize Glue

Each member is a tuple of 3 items:
  • key: the setting name [str]

  • value: the default setting [object]

  • validator: A function which tests whether the input is a valid value,

    and raises a ValueError if invalid. On valid input, returns the (possibly sanitized) setting value.

Methods Summary

add(key, value[, validator])

Methods Documentation

add(key, value, validator=<type 'str'>)[source]