mirror of
https://github.com/python/cpython.git
synced 2025-08-04 08:59:19 +00:00
bpo-39058: Preserve attribute order in argparse Namespace reprs. (GH-17621)
This commit is contained in:
parent
eefd4e0333
commit
9681953c99
3 changed files with 6 additions and 2 deletions
|
@ -4725,7 +4725,7 @@ class TestStrings(TestCase):
|
|||
|
||||
def test_namespace(self):
|
||||
ns = argparse.Namespace(foo=42, bar='spam')
|
||||
string = "Namespace(bar='spam', foo=42)"
|
||||
string = "Namespace(foo=42, bar='spam')"
|
||||
self.assertStringEqual(ns, string)
|
||||
|
||||
def test_namespace_starkwargs_notidentifier(self):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue