[issue32360] Save OrderedDict imports in various stdlibs.

2018-04-03 Thread INADA Naoki
Change by INADA Naoki : -- dependencies: -Dict order is now guaranteed, so add tests and doc for it stage: patch review -> resolved status: open -> closed ___ Python tracker

[issue32360] Save OrderedDict imports in various stdlibs.

2018-04-02 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed ___ Python tracker ___ ___

[issue32360] Save OrderedDict imports in various stdlibs.

2018-04-02 Thread miss-islington
miss-islington added the comment: New changeset 0c533573c527c63dacab5921becb66dc3eb274c1 by Miss Islington (bot) in branch '3.7': bpo-32360: Remove object_pairs_hook=OrderedDict examples (GH-5001)

[issue32360] Save OrderedDict imports in various stdlibs.

2018-04-02 Thread miss-islington
Change by miss-islington : -- pull_requests: +6072 ___ Python tracker ___

[issue32360] Save OrderedDict imports in various stdlibs.

2018-04-02 Thread INADA Naoki
INADA Naoki added the comment: New changeset 629338f1404ea9cd75e4fb0389a2fbe1b589de43 by INADA Naoki in branch 'master': bpo-32360: Remove object_pairs_hook=OrderedDict examples (GH-5001) https://github.com/python/cpython/commit/629338f1404ea9cd75e4fb0389a2fbe1b589de43

[issue32360] Save OrderedDict imports in various stdlibs.

2018-01-25 Thread INADA Naoki
INADA Naoki added the comment: New changeset 2812d3d99287c50bab99625d7240bcf1c2e32369 by INADA Naoki in branch 'master': bpo-32360: Remove OrderedDict usage from json.tool (GH-5315) https://github.com/python/cpython/commit/2812d3d99287c50bab99625d7240bcf1c2e32369

[issue32360] Save OrderedDict imports in various stdlibs.

2018-01-25 Thread INADA Naoki
Change by INADA Naoki : -- pull_requests: +5161 ___ Python tracker ___ ___

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-25 Thread Srinivas Reddy T
Change by Srinivas Reddy T : -- pull_requests: +4902 ___ Python tracker ___

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-24 Thread Raymond Hettinger
Raymond Hettinger added the comment: > * asyncio/base_events.py: Used for local variable. > * email/_header_value_parser.py: Used for local variable. > * json: Examples (in document and docstring) for keeping order, and json.tool. All of these modules have active

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-24 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: I concur with Raymond. I made the same searching before and have found that there are not much opportunities for getting rid of OrderedDict and there are even less cases that will get a benefit from this. -- nosy:

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-23 Thread INADA Naoki
INADA Naoki added the comment: Let's remove from these: * asyncio/base_events.py: Used for local variable. * email/_header_value_parser.py: Used for local variable. * json: Examples (in document and docstring) for keeping order, and json.tool. I don't touch other

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-23 Thread INADA Naoki
Change by INADA Naoki : -- pull_requests: +4890 ___ Python tracker ___ ___

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-23 Thread INADA Naoki
INADA Naoki added the comment: Agreed. I won't remove OrderedDict usages which is part of public APIs. This issue is for finding and removing easy local usages. -- ___ Python tracker

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-23 Thread Raymond Hettinger
Raymond Hettinger added the comment: These should be looked at one at a time (no sweeping search and replace missions). The original author should be consulted when possible (they are in a better position to judge whether the original intent was preserved).

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-23 Thread Srinivas Reddy T
Change by Srinivas Reddy T : -- pull_requests: +4889 ___ Python tracker ___

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-23 Thread Srinivas Reddy T
Change by Srinivas Reddy T : -- keywords: +patch pull_requests: +4883 stage: -> patch review ___ Python tracker ___

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-18 Thread INADA Naoki
New submission from INADA Naoki : csv and re has issues already. There are some remaining OrderdDict, including docstring. It looks like some of them can be removed easily without doc update. This is `ag --exclude-dir=test OrderedDict`, exluding csv, re, pprint and

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-18 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- dependencies: +Dict order is now guaranteed, so add tests and doc for it ___ Python tracker

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-18 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- components: +Library (Lib) dependencies: +Save OrderedDict import in argparse, Save OrderedDict import in re type: -> performance versions: +Python 3.7 ___ Python tracker

[issue32360] Save OrderedDict imports in various stdlibs.

2017-12-18 Thread INADA Naoki
Change by INADA Naoki : -- nosy: inada.naoki priority: normal severity: normal status: open title: Save OrderedDict imports in various stdlibs. ___ Python tracker