[issue9842] Document ... used in recursive repr of containers

2018-11-20 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- resolution: -> fixed stage: patch review -> resolved status: open -> closed ___ Python tracker ___ _

[issue9842] Document ... used in recursive repr of containers

2018-11-20 Thread miss-islington
miss-islington added the comment: New changeset dac5124ba498b51a2c46e2bda751150ae244ed47 by Miss Islington (bot) in branch '3.6': bpo-9842: Add references for using "..." as a placeholder to the index. (GH-10330) https://github.com/python/cpython/commit/dac5124ba498b51a2c46e2bda751150ae244ed

[issue9842] Document ... used in recursive repr of containers

2018-11-20 Thread miss-islington
miss-islington added the comment: New changeset f8f9915f9585a5d4f4a4457ef43ac66607c5f380 by Miss Islington (bot) in branch '3.7': bpo-9842: Add references for using "..." as a placeholder to the index. (GH-10330) https://github.com/python/cpython/commit/f8f9915f9585a5d4f4a4457ef43ac66607c5f3

[issue9842] Document ... used in recursive repr of containers

2018-11-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +9856 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue9842] Document ... used in recursive repr of containers

2018-11-20 Thread miss-islington
Change by miss-islington : -- pull_requests: +9855 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mai

[issue9842] Document ... used in recursive repr of containers

2018-11-20 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: New changeset 6c48bf2d9e1e18dfbfa35f7582ddd32f11f75129 by Serhiy Storchaka in branch 'master': bpo-9842: Add references for using "..." as a placeholder to the index. (GH-10330) https://github.com/python/cpython/commit/6c48bf2d9e1e18dfbfa35f7582ddd32f11f75

[issue9842] Document ... used in recursive repr of containers

2018-11-18 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: Could anybody please look at PR 10330? -- ___ Python tracker ___ ___ Python-bugs-list mailing li

[issue9842] Document ... used in recursive repr of containers

2018-11-04 Thread Serhiy Storchaka
Serhiy Storchaka added the comment: PR 10330 adds few references for using an ellipsis as a placeholder. -- nosy: +serhiy.storchaka ___ Python tracker ___ _

[issue9842] Document ... used in recursive repr of containers

2018-11-04 Thread Serhiy Storchaka
Change by Serhiy Storchaka : -- pull_requests: +9634 ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://m

[issue9842] Document ... used in recursive repr of containers

2018-11-04 Thread miss-islington
miss-islington added the comment: New changeset b4db249c9544fc4425c32feb86d610f3224ca3d8 by Miss Islington (bot) (Pablo Galindo) in branch 'master': bpo-9842: Add cross-reference to the ellipsis object (GH-4063) https://github.com/python/cpython/commit/b4db249c9544fc4425c32feb86d610f3224ca3d8

[issue9842] Document ... used in recursive repr of containers

2017-10-22 Thread Raymond Hettinger
Raymond Hettinger added the comment: Since the appearance of reprs is not guaranteed. I don't think this should be documented (because doing so makes it a guaranteed behavior). In fact, the appearance has changed over time from ... to [...] in and may change at some point to <...> so that

[issue9842] Document ... used in recursive repr of containers

2017-10-20 Thread Pablo Galindo Salgado
Change by Pablo Galindo Salgado : -- keywords: +patch pull_requests: +4033 stage: needs patch -> patch review ___ Python tracker ___ _

[issue9842] Document ... used in recursive repr of containers

2017-09-15 Thread Mike Hoy
Changes by Mike Hoy : -- nosy: +vexoxev ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: https://mail.python.org

[issue9842] Document ... used in recursive repr of containers

2017-09-15 Thread Éric Araujo
Changes by Éric Araujo : -- versions: +Python 3.6, Python 3.7 -Python 3.2, Python 3.3, Python 3.4 ___ Python tracker ___ ___ Python-bu

[issue9842] Document ... used in recursive repr of containers

2013-03-08 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- versions: +Python 3.3, Python 3.4 -Python 3.1 ___ Python tracker ___ ___ Python-bugs-list mailing list U

[issue9842] Document ... used in recursive repr of containers

2010-09-17 Thread Terry J. Reedy
Changes by Terry J. Reedy : -- nosy: +terry.reedy ___ Python tracker ___ ___ Python-bugs-list mailing list Unsubscribe: http://mail.py

[issue9842] Document ... used in recursive repr of containers

2010-09-12 Thread R. David Murray
R. David Murray added the comment: ... is also the Ellipsis object, and it is probably even more important that the index cross reference that usage :) -- nosy: +r.david.murray ___ Python tracker _

[issue9842] Document ... used in recursive repr of containers

2010-09-12 Thread Éric Araujo
New submission from Éric Araujo : Built-in containers like dict use an ellipsis to represent a recursive item. In the symbols index, “...” only links to the secondary prompt; I think it should also link to a paragraph explaining the display of recursive containers. -- assignee: d...@p