(self)
| 6100 | self.assertStringEqual(argument, string) |
| 6101 | |
| 6102 | def test_namespace(self): |
| 6103 | ns = argparse.Namespace(foo=42, bar='spam') |
| 6104 | string = "Namespace(foo=42, bar='spam')" |
| 6105 | self.assertStringEqual(ns, string) |
| 6106 | |
| 6107 | def test_namespace_starkwargs_notidentifier(self): |
| 6108 | ns = argparse.Namespace(**{'"': 'quote'}) |
nothing calls this directly
no test coverage detected