(self, string, defaults=None)
| 60 | return instance |
| 61 | |
| 62 | def fromstring(self, string, defaults=None): |
| 63 | cf = self.newconfig(defaults) |
| 64 | cf.read_string(string) |
| 65 | return cf |
| 66 | |
| 67 | |
| 68 | class BasicTestCase(CfgParserTestCaseClass): |
nothing calls this directly
no test coverage detected