[issue32473] Readibility of ABCMeta._dump_registry()

2018-01-12 Thread INADA Naoki
Change by INADA Naoki : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ ___ Py

[issue32473] Readibility of ABCMeta._dump_registry()

2018-01-12 Thread INADA Naoki
INADA Naoki added the comment: New changeset a91662affeb0aae2515cdc5e8f82269337105bf4 by INADA Naoki (Miss Islington (bot)) in branch '3.6': bpo-32473: Improve ABCMeta._dump_registry() readability (GH-5091) https://github.com/python/cpython/commit/a91662affeb0aae2515cdc5e8f82269337105bf4 ---

[issue32473] Readibility of ABCMeta._dump_registry()

2018-01-12 Thread Roundup Robot
Change by Roundup Robot : -- pull_requests: +5019 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail

[issue32473] Readibility of ABCMeta._dump_registry()

2018-01-12 Thread INADA Naoki
INADA Naoki added the comment: New changeset ae12f5d4c98f2095c2aadd58981453e955044697 by INADA Naoki (yahya-abou-imran) in branch 'master': bpo-32473: Improve ABCMeta._dump_registry() readability (GH-5091) https://github.com/python/cpython/commit/ae12f5d4c98f2095c2aadd58981453e955044697

[issue32473] Readibility of ABCMeta._dump_registry()

2018-01-05 Thread Ivan Levkivskyi
Change by Ivan Levkivskyi : -- nosy: +levkivskyi ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.

[issue32473] Readibility of ABCMeta._dump_registry()

2018-01-03 Thread Yahya Abou Imran
Change by Yahya Abou Imran : -- keywords: +patch pull_requests: +4963 stage: -> patch review ___ Python tracker ___ ___ Python-bugs-

[issue32473] Readibility of ABCMeta._dump_registry()

2017-12-31 Thread Yahya Abou Imran
New submission from Yahya Abou Imran : >From python-ideas: https://mail.python.org/pipermail/python-ideas/2017-December/048504.html In python 2.7, ABCs's caches and registries are sets. But in python 3.6 they are WeakSet. In consequence, the output of _dump_registry() is almost useless: >>> fr