(self,defaults=None)
| 5 | |
| 6 | class MyConfigParser( ConfigParser.ConfigParser ): |
| 7 | def __init__(self,defaults=None): |
| 8 | ConfigParser.ConfigParser.__init__(self,defaults=None) |
| 9 | def optionxform(self, optionstr): |
| 10 | return optionstr |
| 11 |
nothing calls this directly
no outgoing calls
no test coverage detected