(self)
| 5982 | self.assertStringEqual(argument, string) |
| 5983 | |
| 5984 | def test_namespace(self): |
| 5985 | ns = argparse.Namespace(foo=42, bar='spam') |
| 5986 | string = "Namespace(foo=42, bar='spam')" |
| 5987 | self.assertStringEqual(ns, string) |
| 5988 | |
| 5989 | def test_namespace_starkwargs_notidentifier(self): |
| 5990 | ns = argparse.Namespace(**{'"': 'quote'}) |
nothing calls this directly
no test coverage detected