This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Add docs and tests for ordering in Counter. [no behavior change]
Type: Stage: resolved
Components: Documentation, Tests Versions: Python 3.8, Python 3.7
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: rhettinger Nosy List: eamanu, rhettinger
Priority: normal Keywords: patch

Created on 2019-02-21 00:10 by rhettinger, last changed 2022-04-11 14:59 by admin. This issue is now closed.

Pull Requests
URL Status Linked Edit
PR 11962 merged rhettinger, 2019-02-21 00:19
PR 11979 closed miss-islington, 2019-02-21 17:19
Messages (6)
msg336156 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 00:10
When dicts became ordered, counters became ordered as well.  Update the docs and tests to reflect that fact.
msg336157 - (view) Author: Emmanuel Arias (eamanu) * Date: 2019-02-21 00:12
Hi!

I will take it :-)
msg336160 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 00:20
> I will take it :-)

Sorry, I've already assigned this to myself.
msg336162 - (view) Author: Emmanuel Arias (eamanu) * Date: 2019-02-21 00:21
> Sorry, I've already assigned this to myself.

Ah!! sorry sorry!
msg336166 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 00:31
Emmanuel, feel free to review the PR and make suggestions.
msg336240 - (view) Author: Raymond Hettinger (rhettinger) * (Python committer) Date: 2019-02-21 17:19
New changeset 407c7343266eb3e5a2f5c1f4913082c84f8dd8a0 by Raymond Hettinger in branch 'master':
bpo-36057 Update docs and tests for ordering in collections.Counter [no behavior change] (#11962)
https://github.com/python/cpython/commit/407c7343266eb3e5a2f5c1f4913082c84f8dd8a0
History
Date User Action Args
2022-04-11 14:59:11adminsetgithub: 80238
2019-02-21 17:31:03rhettingersetstatus: open -> closed
resolution: fixed
stage: patch review -> resolved
2019-02-21 17:19:14miss-islingtonsetpull_requests: + pull_request12003
2019-02-21 17:19:06rhettingersetmessages: + msg336240
2019-02-21 00:31:27rhettingersetmessages: + msg336166
2019-02-21 00:21:49eamanusetmessages: + msg336162
2019-02-21 00:20:07rhettingersetmessages: + msg336160
2019-02-21 00:19:11rhettingersetkeywords: + patch
stage: patch review
pull_requests: + pull_request11988
2019-02-21 00:14:30eamanusetcomponents: + Documentation
2019-02-21 00:12:32eamanusetnosy: + eamanu
messages: + msg336157
2019-02-21 00:10:05rhettingercreate