@param options: An options object. @type options: I{Options}
(self, options)
| 37 | """ |
| 38 | |
| 39 | def __init__(self, options): |
| 40 | """ |
| 41 | @param options: An options object. |
| 42 | @type options: I{Options} |
| 43 | """ |
| 44 | self.options = options |
| 45 | self.plugins = PluginContainer(options.plugins) |
| 46 | |
| 47 | def mangle(self, name, x): |
| 48 | """ |
no test coverage detected