[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-09-09 Thread miss-islington
miss-islington added the comment: New changeset bee8bfe5f440c2dde7f5af189febdbf81b27abd5 by Miss Islington (bot) in branch '3.8': bpo-37212: Preserve keyword argument order in unittest.mock.call and error messages (GH-14310) https://github.com/python/cpython/commit/bee8bfe5f440c2dde7f5af189f

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-09-09 Thread Zachary Ware
Change by Zachary Ware : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed versions: +Python 3.8 ___ Python tracker ___ __

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-09-09 Thread miss-islington
Change by miss-islington : -- pull_requests: +15408 pull_request: https://github.com/python/cpython/pull/15755 ___ Python tracker ___ __

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-09-09 Thread Zachary Ware
Zachary Ware added the comment: New changeset 9d607061c9c888913ae2c18543775cf360d55f27 by Zachary Ware (Xtreak) in branch 'master': bpo-37212: Preserve keyword argument order in unittest.mock.call and error messages (GH-14310) https://github.com/python/cpython/commit/9d607061c9c888913ae2c185

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-06-22 Thread Karthikeyan Singaravelan
Change by Karthikeyan Singaravelan : -- keywords: +patch pull_requests: +14132 stage: -> patch review pull_request: https://github.com/python/cpython/pull/14310 ___ Python tracker ___

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-06-22 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I will create a PR for this as per mailing list discussion : https://mail.python.org/archives/list/python-...@python.org/message/JWPDLKNM5X27FRWJG7UOAFXHNRUGH44S/ -- ___ Python tracker

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-06-22 Thread Daniel Hilst Selli
Change by Daniel Hilst Selli : -- nosy: +dhilst ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-06-22 Thread Karthikeyan Singaravelan
Karthikeyan Singaravelan added the comment: I created a python-dev thread for discussion : https://mail.python.org/archives/list/python-...@python.org/thread/6F2NGCERZLZ2CDGYIAR5QOHMGAAE5VHE/ -- ___ Python tracker

[issue37212] ordered keyword arguments in unittest.mock.call repr and error messages

2019-06-10 Thread Karthikeyan Singaravelan
New submission from Karthikeyan Singaravelan : With PEP 468 implemented in Python 3.6 the order of keyword arguments are preserved. In mock.call the arguments are sorted [0]. This makes the output different from the expectation that order should be same as the one passed. This was implemented